pub struct MemReq<const WIDTH: usize> {
pub id: usize,
pub addr: u64,
pub wbe: [bool; WIDTH],
pub wdata: [u8; WIDTH],
}Fields§
§id: usize§addr: u64§wbe: [bool; WIDTH]§wdata: [u8; WIDTH]Trait Implementations§
Auto Trait Implementations§
impl<const WIDTH: usize> Freeze for MemReq<WIDTH>
impl<const WIDTH: usize> RefUnwindSafe for MemReq<WIDTH>
impl<const WIDTH: usize> Send for MemReq<WIDTH>
impl<const WIDTH: usize> Sync for MemReq<WIDTH>
impl<const WIDTH: usize> Unpin for MemReq<WIDTH>
impl<const WIDTH: usize> UnwindSafe for MemReq<WIDTH>
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