Struct hazardflow_designs::gemmini::sram::dma::dma_command_tracker::AllocReq
source · pub struct AllocReq<T: Copy, const MAX_BYTES: usize> {
pub tag: T,
pub bytes_to_read: U<{ _ }>,
}
Expand description
Command allocation request.
Fields§
§tag: T
Tag.
bytes_to_read: U<{ _ }>
Bytes to read.
Trait Implementations§
impl<T: Copy + Copy, const MAX_BYTES: usize> Copy for AllocReq<T, MAX_BYTES>
Auto Trait Implementations§
impl<T, const MAX_BYTES: usize> RefUnwindSafe for AllocReq<T, MAX_BYTES>where
T: RefUnwindSafe,
impl<T, const MAX_BYTES: usize> Send for AllocReq<T, MAX_BYTES>where
T: Send,
impl<T, const MAX_BYTES: usize> Sync for AllocReq<T, MAX_BYTES>where
T: Sync,
impl<T, const MAX_BYTES: usize> Unpin for AllocReq<T, MAX_BYTES>where
T: Unpin,
impl<T, const MAX_BYTES: usize> UnwindSafe for AllocReq<T, MAX_BYTES>where
T: UnwindSafe,
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