Struct capsules_core::virtualizers::virtual_uart::UartDevice

source ·
pub struct UartDevice<'a> { /* private fields */ }

Implementations§

source§

impl<'a> UartDevice<'a>

source

pub fn new(mux: &'a MuxUart<'a>, receiver: bool) -> UartDevice<'a>

source

pub fn setup(&'a self)

Must be called right after static_init!().

Trait Implementations§

source§

impl<'a> ListNode<'a, UartDevice<'a>> for UartDevice<'a>

source§

fn next(&'a self) -> &'a ListLink<'a, UartDevice<'a>>

source§

impl<'a> Receive<'a> for UartDevice<'a>

source§

fn receive_buffer( &self, rx_buffer: &'static mut [u8], rx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Receive data until buffer is full.

source§

fn set_receive_client(&self, client: &'a dyn ReceiveClient)

Set the receive client, which will be called when reads complete.
source§

fn receive_abort(&self) -> Result<(), ErrorCode>

Abort any ongoing receive transfers and return what has been received. Read more
source§

fn receive_word(&self) -> Result<(), ErrorCode>

Receive a single word of data. Read more
source§

impl<'a> ReceiveClient for UartDevice<'a>

source§

fn received_buffer( &self, rx_buffer: &'static mut [u8], rx_len: usize, rcode: Result<(), ErrorCode>, error: Error, )

A call to Receive::receive_buffer completed. Read more
source§

fn received_word(&self, _word: u32, _rval: Result<(), ErrorCode>, _error: Error)

A call to Receive::receive_word completed. Read more
source§

impl<'a> Transmit<'a> for UartDevice<'a>

source§

fn transmit_buffer( &self, tx_data: &'static mut [u8], tx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Transmit data.

source§

fn set_transmit_client(&self, client: &'a dyn TransmitClient)

Set the transmit client, which will be called when transmissions complete.
source§

fn transmit_abort(&self) -> Result<(), ErrorCode>

Abort an outstanding call to transmit_word or transmit_buffer. Read more
source§

fn transmit_word(&self, word: u32) -> Result<(), ErrorCode>

Transmit a single word of data asynchronously. Read more
source§

impl<'a> TransmitClient for UartDevice<'a>

source§

fn transmitted_buffer( &self, tx_buffer: &'static mut [u8], tx_len: usize, rcode: Result<(), ErrorCode>, )

source§

fn transmitted_word(&self, rcode: Result<(), ErrorCode>)

A call to Transmit::transmit_word completed. Read more

Auto Trait Implementations§

§

impl<'a> !Freeze for UartDevice<'a>

§

impl<'a> !RefUnwindSafe for UartDevice<'a>

§

impl<'a> !Send for UartDevice<'a>

§

impl<'a> !Sync for UartDevice<'a>

§

impl<'a> Unpin for UartDevice<'a>

§

impl<'a> !UnwindSafe for UartDevice<'a>

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>,

§

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>,

§

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.
source§

impl<T> Client for T

source§

impl<'a, T> UartData<'a> for T
where T: Transmit<'a> + Receive<'a>,