Struct Serial

Source
pub struct Serial<U, PINS> { /* private fields */ }
Expand description

Serial abstraction

Implementations§

Source§

impl<U, PINS> Serial<U, PINS>
where PINS: Pins<U>, U: Instance,

Source

pub fn new(usart: U, pins: PINS, clocks: &Clocks, config: Config) -> Self

Source

pub fn listen(&mut self, event: Event)

Starts listening for an interrupt event

Source

pub fn unlisten(&mut self, event: Event)

End listening for an interrupt event

Source

pub fn split(self) -> (Tx<U>, Rx<U>)

Source

pub fn release(self) -> (U, PINS)

Trait Implementations§

Source§

impl<U, PINS> Read<u8> for Serial<U, PINS>
where U: Instance,

Source§

type Error = Error

Read error
Source§

fn read(&mut self) -> Result<u8, Error>

Reads a single word from the serial interface
Source§

impl<U, PINS> Write<u8> for Serial<U, PINS>
where U: Instance,

Source§

type Error = Error

Write error
Source§

fn flush(&mut self) -> Result<(), Self::Error>

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

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

Writes a single word to the serial interface

Auto Trait Implementations§

§

impl<U, PINS> Freeze for Serial<U, PINS>
where U: Freeze, PINS: Freeze,

§

impl<U, PINS> RefUnwindSafe for Serial<U, PINS>
where U: RefUnwindSafe, PINS: RefUnwindSafe,

§

impl<U, PINS> Send for Serial<U, PINS>
where U: Send, PINS: Send,

§

impl<U, PINS> Sync for Serial<U, PINS>
where U: Sync, PINS: Sync,

§

impl<U, PINS> Unpin for Serial<U, PINS>
where U: Unpin, PINS: Unpin,

§

impl<U, PINS> UnwindSafe for Serial<U, PINS>
where U: UnwindSafe, PINS: 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.