Send

Trait Send 

Source
pub trait Send {
    // Required method
    fn send(&self, mode: WriteMode);
}
Expand description

This trait is used to provide an implementation for sending data via a [Display] connection. [Display]: struct.Display.html

Required Methods§

Source

fn send(&self, mode: WriteMode)

Sends data via the connection.

Implementors§

Source§

impl<RS, R, E, D, T> Send for ParallelConnection<RS, R, E, D, T>
where Self: SendRaw, RS: DisplayHardwareLayer, R: DisplayHardwareLayer,