[][src]Struct aimc_comms::Outputs

pub struct Outputs<T, M> { /* fields omitted */ }

Implementations

impl<T, M> Outputs<T, M>[src]

pub fn new(tx: T, message_handler: M) -> Self[src]

Trait Implementations

impl<T: Clone, M: Clone> Clone for Outputs<T, M>[src]

impl<T: Debug, M: Debug> Debug for Outputs<T, M>[src]

impl<T: PartialEq, M: PartialEq> PartialEq<Outputs<T, M>> for Outputs<T, M>[src]

impl<T, M> StructuralPartialEq for Outputs<T, M>[src]

impl<I, T, M> System<I, Outputs<T, M>> for Communications where
    I: Rx,
    T: Tx,
    M: MessageHandler
[src]

Auto Trait Implementations

impl<T, M> RefUnwindSafe for Outputs<T, M> where
    M: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, M> Send for Outputs<T, M> where
    M: Send,
    T: Send

impl<T, M> Sync for Outputs<T, M> where
    M: Sync,
    T: Sync

impl<T, M> Unpin for Outputs<T, M> where
    M: Unpin,
    T: Unpin

impl<T, M> UnwindSafe for Outputs<T, M> where
    M: UnwindSafe,
    T: 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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

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.