Struct Sender
calloop::channel
pub struct Sender<T> { /* fields omitted */ }
impl<T> Sender<T>
pub fn send(&self, t: T) -> Result<(), SendError<T>>
impl<T> Clone for Sender<T>
fn clone(&self) -> Sender<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
source
impl<T> Send for Sender<T> where T: Send,
impl<T> !Sync for Sender<T>