#[repr(C)]pub struct uart_fifo_t {
pub buffer: [u16; 64],
pub read: u16,
pub write: u16,
pub flags: u8,
}
Fields§
§buffer: [u16; 64]
§read: u16
§write: u16
§flags: u8
Trait Implementations§
Source§impl Clone for uart_fifo_t
impl Clone for uart_fifo_t
Source§fn clone(&self) -> uart_fifo_t
fn clone(&self) -> uart_fifo_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for uart_fifo_t
impl Debug for uart_fifo_t
impl Copy for uart_fifo_t
Auto Trait Implementations§
impl Freeze for uart_fifo_t
impl RefUnwindSafe for uart_fifo_t
impl Send for uart_fifo_t
impl Sync for uart_fifo_t
impl Unpin for uart_fifo_t
impl UnwindSafe for uart_fifo_t
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