Struct lpc55_hal::drivers::serial::Tx[][src]

pub struct Tx<USART: Usart> { /* fields omitted */ }

Serial transmitter

Trait Implementations

impl<USART: Usart> Deref for Tx<USART>[src]

type Target = RegisterBlock

The resulting type after dereferencing.

impl<USART: Usart> Write for Tx<USART> where
    Tx<USART>: Write<u8>, 
[src]

impl<USART: Usart> Write<u8> for Tx<USART>[src]

type Error = Error

Write error

Auto Trait Implementations

impl<USART> Send for Tx<USART> where
    USART: Send

impl<USART> Sync for Tx<USART> where
    USART: Sync

impl<USART> Unpin for Tx<USART> where
    USART: Unpin

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

type Output = T

Should always be Self

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.