[][src]Struct bus_queue::bus::publisher::Publisher

pub struct Publisher<T, S: SwapSlot<T>> { /* fields omitted */ }

Trait Implementations

impl<T, S: SwapSlot<T>> Drop for Publisher<T, S>[src]

impl<T, S: SwapSlot<T>> Eq for Publisher<T, S>[src]

impl<T, S: SwapSlot<T>> From<(Sender<T, S>, Arc<Event>)> for Publisher<T, S>[src]

impl<T, S: SwapSlot<T>> PartialEq<Publisher<T, S>> for Publisher<T, S>[src]

impl<T, S: SwapSlot<T>> Sink<T> for Publisher<T, S>[src]

type Error = SendError<T>

The type of value produced by the sink when an error occurs.

Auto Trait Implementations

impl<T, S> RefUnwindSafe for Publisher<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, S> Send for Publisher<T, S> where
    S: Send + Sync,
    T: Send + Sync

impl<T, S> Sync for Publisher<T, S> where
    S: Send + Sync,
    T: Send + Sync

impl<T, S> Unpin for Publisher<T, S>

impl<T, S> UnwindSafe for Publisher<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

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, 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.