[][src]Enum stream_multiplexer::IncomingPacket

pub enum IncomingPacket<V> {
    Linkdead(usize),
    Message(IncomingMessage<V>),
}

A packet representing a message from a stream.

Variants

Linkdead(usize)

The stream with ID has gone linkdead.

Message(IncomingMessage<V>)

The stream has produced a message.

Methods

impl<V> IncomingPacket<V>[src]

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

Return the ID of the stream that the packet represents.

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

If there is a value, return a reference to it

Trait Implementations

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

impl<V> From<IncomingMessage<V>> for IncomingPacket<V>[src]

Auto Trait Implementations

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

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

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

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

impl<V> UnwindSafe for IncomingPacket<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]