[][src]Enum stream_multiplexer::IncomingPacket

pub enum IncomingPacket<V> {
    StreamConnected(usize),
    StreamDisconnected(usizeDisconnectReason),
    Message(IncomingMessage<V>),
}

A packet representing a message from a stream.

Variants

StreamConnected(usize)

A new stream has connected to the channel.

StreamDisconnected(usizeDisconnectReason)

Stream has been removed from the channel.

Message(IncomingMessage<V>)

The stream has produced a message.

Implementations

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: Clone> Clone for IncomingPacket<V>[src]

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

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

impl<V: PartialEq> PartialEq<IncomingPacket<V>> for IncomingPacket<V>[src]

impl<V> StructuralPartialEq 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> 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.

impl<T> WithSubscriber for T[src]