Struct capsules_core::virtualizers::virtual_uart::UartDevice
source · pub struct UartDevice<'a> { /* private fields */ }
Implementations§
source§impl<'a> UartDevice<'a>
impl<'a> UartDevice<'a>
Trait Implementations§
source§impl<'a> ListNode<'a, UartDevice<'a>> for UartDevice<'a>
impl<'a> ListNode<'a, UartDevice<'a>> for UartDevice<'a>
fn next(&'a self) -> &'a ListLink<'a, UartDevice<'a>>
source§impl<'a> Receive<'a> for UartDevice<'a>
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])>
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)
fn set_receive_client(&self, client: &'a dyn ReceiveClient)
Set the receive client, which will be called when reads complete.
source§impl<'a> ReceiveClient for UartDevice<'a>
impl<'a> ReceiveClient for UartDevice<'a>
source§fn received_buffer(
&self,
rx_buffer: &'static mut [u8],
rx_len: usize,
rcode: Result<(), ErrorCode>,
error: Error,
)
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 moresource§fn received_word(&self, _word: u32, _rval: Result<(), ErrorCode>, _error: Error)
fn received_word(&self, _word: u32, _rval: Result<(), ErrorCode>, _error: Error)
A call to
Receive::receive_word
completed. Read moresource§impl<'a> Transmit<'a> for UartDevice<'a>
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])>
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)
fn set_transmit_client(&self, client: &'a dyn TransmitClient)
Set the transmit client, which will be called when transmissions
complete.
source§impl<'a> TransmitClient for UartDevice<'a>
impl<'a> TransmitClient for UartDevice<'a>
source§fn transmitted_buffer(
&self,
tx_buffer: &'static mut [u8],
tx_len: usize,
rcode: Result<(), ErrorCode>,
)
fn transmitted_buffer( &self, tx_buffer: &'static mut [u8], tx_len: usize, rcode: Result<(), ErrorCode>, )
A call to
Transmit::transmit_buffer
completed. Read moresource§fn transmitted_word(&self, rcode: Result<(), ErrorCode>)
fn transmitted_word(&self, rcode: Result<(), ErrorCode>)
A call to
Transmit::transmit_word
completed. Read moreAuto 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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more