[][src]Struct tm4c123x_hal::serial::Tx

pub struct Tx<UART, TX, RTS> { /* fields omitted */ }

Serial transmitter

Implementations

impl<TX, RTS> Tx<UART0, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART1, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART2, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART3, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART4, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART5, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART6, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

impl<TX, RTS> Tx<UART7, TX, RTS>[src]

pub fn write_all<I: ?Sized>(&mut self, data: &I) where
    I: AsRef<[u8]>, 
[src]

Write a complete string to the UART.

Trait Implementations

impl<TX, RTS> Write<u8> for Tx<UART0, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART1, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART2, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART3, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART4, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART5, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART6, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write<u8> for Tx<UART7, TX, RTS>[src]

type Error = Void

Write error

impl<TX, RTS> Write for Tx<UART0, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART1, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART2, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART3, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART4, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART5, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART6, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

impl<TX, RTS> Write for Tx<UART7, TX, RTS>[src]

Allows the Tx to be passed to 'write!()' and friends.

Auto Trait Implementations

impl<UART, TX, RTS> Send for Tx<UART, TX, RTS> where
    RTS: Send,
    TX: Send,
    UART: Send

impl<UART, TX, RTS> Sync for Tx<UART, TX, RTS> where
    RTS: Sync,
    TX: Sync,
    UART: Sync

impl<UART, TX, RTS> Unpin for Tx<UART, TX, RTS> where
    RTS: Unpin,
    TX: Unpin,
    UART: 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.