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