Trait Give

Source
pub trait Give<T> {
    // Required method
    fn give(&self, t: T) -> bool;
}

Required Methods§

Source

fn give(&self, t: T) -> bool

Implementations on Foreign Types§

Source§

impl<T> Give<T> for SyncSender<T>

Source§

fn give(&self, t: T) -> bool

Implementors§

Source§

impl<T> Give<T> for Buffer<T>