[][src]Struct pms_7003::Wrapper

pub struct Wrapper<TX, RX>(_, _)
where
    TX: Write<u8>,
    RX: Read<u8>
;

Combines two serial traits objects into one

Trait Implementations

impl<TX, RX> Read<u8> for Wrapper<TX, RX> where
    TX: Write<u8>,
    RX: Read<u8>, 
[src]

type Error = RX::Error

Read error

impl<TX, RX> Write<u8> for Wrapper<TX, RX> where
    TX: Write<u8>,
    RX: Read<u8>, 
[src]

type Error = TX::Error

Write error

Auto Trait Implementations

impl<TX, RX> RefUnwindSafe for Wrapper<TX, RX> where
    RX: RefUnwindSafe,
    TX: RefUnwindSafe

impl<TX, RX> Send for Wrapper<TX, RX> where
    RX: Send,
    TX: Send

impl<TX, RX> Sync for Wrapper<TX, RX> where
    RX: Sync,
    TX: Sync

impl<TX, RX> Unpin for Wrapper<TX, RX> where
    RX: Unpin,
    TX: Unpin

impl<TX, RX> UnwindSafe for Wrapper<TX, RX> where
    RX: UnwindSafe,
    TX: 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, 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.