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 ReceiveClient for UartDevice<'_>
impl ReceiveClient for UartDevice<'_>
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 TransmitClient for UartDevice<'_>
impl TransmitClient for UartDevice<'_>
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