pub enum FnAxi {
Read {
addr: u32,
data: *mut u8,
len: u32,
},
Write {
addr: u32,
data: *const u8,
len: u32,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnAxi
impl RefUnwindSafe for FnAxi
impl !Send for FnAxi
impl !Sync for FnAxi
impl Unpin for FnAxi
impl UnwindSafe for FnAxi
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