Trait ScreenDeviceExt

Source
pub trait ScreenDeviceExt: ScreenDevice {
    // Provided method
    fn send<I>(&mut self, iterable: I) -> Result<(), Error>
       where I: IntoIterator<Item = Command>,
             I::IntoIter: Send + Sync { ... }
}

Provided Methods§

Source

fn send<I>(&mut self, iterable: I) -> Result<(), Error>
where I: IntoIterator<Item = Command>, I::IntoIter: Send + Sync,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<S> ScreenDeviceExt for S
where S: ScreenDevice,