[][src]Enum stream_multiplexer::OutgoingPacket

pub enum OutgoingPacket<V> {
    Message(OutgoingMessage<V>),
    ChangeChannel(Vec<usize>, usize),
    Shutdown(Vec<usize>),
}

For sending a message or causing the stream to change to a different channel

Variants

Message(OutgoingMessage<V>)

Message to send to the stream

ChangeChannel(Vec<usize>, usize)

Change change of stream_id to channel_id.

Shutdown(Vec<usize>)

Shutdown the stream

Methods

impl<V> OutgoingPacket<V>[src]

pub fn stream_ids(&self) -> Iter<usize>[src]

Return the ID of the stream that the packet represents.

pub fn values(&self) -> Option<Iter<V>>[src]

If there is a value, return a reference to it

Trait Implementations

impl<V> Debug for OutgoingPacket<V>[src]

impl<V> From<OutgoingMessage<V>> for OutgoingPacket<V>[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for OutgoingPacket<V> where
    V: RefUnwindSafe

impl<V> Send for OutgoingPacket<V> where
    V: Send

impl<V> Sync for OutgoingPacket<V> where
    V: Sync

impl<V> Unpin for OutgoingPacket<V> where
    V: Unpin

impl<V> UnwindSafe for OutgoingPacket<V> where
    V: UnwindSafe

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

impl<T> WithSubscriber for T[src]