[][src]Struct moteconnection::dispatcher::raw::RawDispatcher

pub struct RawDispatcher {
    pub rx: Receiver<Event<Bytes>>,
    pub tx: Sender<Event<Bytes>>,
    // some fields omitted
}

Handles the dispatching of raw packets without interpreting the contents.

Fields

rx: Receiver<Event<Bytes>>

The receiver

tx: Sender<Event<Bytes>>

The sender

Implementations

impl RawDispatcher[src]

pub fn new(dispatch: u8) -> RawDispatcher[src]

Creates a raw packet dispatcher

pub fn rx(&self) -> &Receiver<Event<Bytes>>[src]

Returns the receiver for data from the serial device.

pub fn tx(&self) -> &Sender<Event<Bytes>>[src]

Returns the sender for data to the serial device.

Trait Implementations

impl Dispatcher for RawDispatcher[src]

Auto Trait Implementations

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,