#[repr(C)]pub struct uart_event_tx {
pub buf: *const u8,
pub len: usize,
}Expand description
@brief UART TX event data.
Fields§
§buf: *const u8@brief Pointer to current buffer.
len: usize@brief Number of bytes sent.
Trait Implementations§
Source§impl Debug for uart_event_tx
impl Debug for uart_event_tx
Source§impl Default for uart_event_tx
impl Default for uart_event_tx
Source§fn default() -> uart_event_tx
fn default() -> uart_event_tx
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for uart_event_tx
impl RefUnwindSafe for uart_event_tx
impl !Send for uart_event_tx
impl !Sync for uart_event_tx
impl Unpin for uart_event_tx
impl UnwindSafe for uart_event_tx
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