#[repr(C)]pub struct Params {
pub uart: usize,
pub ptr: *const u8,
pub len: usize,
}
Expand description
Parameters of write
Fields§
§uart: usize
Index of the UART to write to.
ptr: *const u8
Address of the buffer.
len: usize
Length of the buffer in bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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