Struct hazardflow_designs::cpu::csr::CsrResp
source · pub struct CsrResp {
pub rdata: u32,
pub eret: bool,
pub evec: u32,
}
Expand description
CSR response.
Fields§
§rdata: u32
Read data.
eret: bool
Returning from exception?
evec: u32
Redirected PC when returning from exception.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CsrResp
impl Send for CsrResp
impl Sync for CsrResp
impl Unpin for CsrResp
impl UnwindSafe for CsrResp
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