Struct seitan::Sender[][src]

pub struct Sender<'a, T> { /* fields omitted */ }

Events Sender

Sending part of a Sender/Stream pair. Keeps track of the children streams and notifies them of any new event if they are still alive.

Implementations

impl<'a, T> Sender<'a, T>[src]

pub fn new() -> Sender<'a, T>[src]

pub fn push(&mut self, st: Rc<UnsafeCell<dyn SinkInner<'a, T> + 'a>>)[src]

pub fn remove_raw(&mut self, st: *const c_void)[src]

pub fn num_receivers(&self) -> usize[src]

impl<'a, T> Sender<'a, T>[src]

pub fn send(&self, t: T)[src]

pub fn send_all<I: IntoIterator<Item = T>>(&self, it: I)[src]

Trait Implementations

impl<'a, T: Clone> Clone for Sender<'a, T>[src]

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Sender<'a, T>

impl<'a, T> !Send for Sender<'a, T>

impl<'a, T> !Sync for Sender<'a, T>

impl<'a, T> Unpin for Sender<'a, T>

impl<'a, T> !UnwindSafe for Sender<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.