Struct capsules_core::virtualizers::virtual_uart::MuxUart
source · pub struct MuxUart<'a> { /* private fields */ }
Implementations§
Trait Implementations§
source§impl DeferredCallClient for MuxUart<'_>
impl DeferredCallClient for MuxUart<'_>
source§impl<'a> ReceiveClient for MuxUart<'a>
impl<'a> ReceiveClient for MuxUart<'a>
source§fn received_buffer(
&self,
buffer: &'static mut [u8],
rx_len: usize,
rcode: Result<(), ErrorCode>,
error: Error,
)
fn received_buffer( &self, 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> TransmitClient for MuxUart<'a>
impl<'a> TransmitClient for MuxUart<'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, _rval: Result<(), ErrorCode>)
fn transmitted_word(&self, _rval: Result<(), ErrorCode>)
A call to
Transmit::transmit_word
completed. Read moreAuto Trait Implementations§
impl<'a> !Freeze for MuxUart<'a>
impl<'a> !RefUnwindSafe for MuxUart<'a>
impl<'a> !Send for MuxUart<'a>
impl<'a> !Sync for MuxUart<'a>
impl<'a> Unpin for MuxUart<'a>
impl<'a> !UnwindSafe for MuxUart<'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