Tx

Struct Tx 

Source
pub struct Tx<UART> { /* private fields */ }
Expand description

Serial transmitter

Trait Implementations§

Source§

impl Write<u8> for Tx<UART0>

Source§

type Error = Void

Write error
Source§

fn flush(&mut self) -> Result<(), Void>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Void>

Writes a single word to the serial interface
Source§

impl Write<u8> for Tx<UART1>

Source§

type Error = Void

Write error
Source§

fn flush(&mut self) -> Result<(), Void>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Void>

Writes a single word to the serial interface
Source§

impl Write<u8> for Tx<UART2>

Source§

type Error = Void

Write error
Source§

fn flush(&mut self) -> Result<(), Void>

Ensures that none of the previously written words are still buffered
Source§

fn write(&mut self, byte: u8) -> Result<(), Void>

Writes a single word to the serial interface

Auto Trait Implementations§

§

impl<UART> Freeze for Tx<UART>

§

impl<UART> RefUnwindSafe for Tx<UART>
where UART: RefUnwindSafe,

§

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

§

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

§

impl<UART> Unpin for Tx<UART>
where UART: Unpin,

§

impl<UART> UnwindSafe for Tx<UART>
where UART: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.