Struct evegfx_spidriver::EVESPIDriverInterface[][src]

pub struct EVESPIDriverInterface<TX, RX> where
    TX: Write<u8>,
    RX: Read<u8>, 
{ /* fields omitted */ }

Implementations

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

pub fn new(sd: SPIDriver<TX, RX>) -> Self[src]

Trait Implementations

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

type Error = Error<TX::Error, RX::Error>

Auto Trait Implementations

impl<TX, RX> Send for EVESPIDriverInterface<TX, RX> where
    RX: Send,
    TX: Send
[src]

impl<TX, RX> Sync for EVESPIDriverInterface<TX, RX> where
    RX: Sync,
    TX: Sync
[src]

impl<TX, RX> Unpin for EVESPIDriverInterface<TX, RX> where
    RX: Unpin,
    TX: Unpin
[src]

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.