Struct seitan::SenderRc[][src]

pub struct SenderRc<'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> SenderRc<'a, T>[src]

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

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

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

pub fn into_inner(self) -> Rc<UnsafeCell<SenderInner<'a, T>>>[src]

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

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

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

impl<'a, T: Clone + 'a> SenderRc<'a, T>[src]

pub fn stream(&mut self) -> StreamRc<'a, T>[src]

Trait Implementations

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

impl<'a, T> Debug for SenderRc<'a, T>[src]

impl<'a, T: Default> Default for SenderRc<'a, T>[src]

Auto Trait Implementations

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

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

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

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

impl<'a, T> !UnwindSafe for SenderRc<'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.