#[repr(u32)]pub enum transaction_flags_t {
Sim_Transaction_Fetch = 1,
Sim_Transaction_Write = 2,
Sim_Transaction_Control = 4,
Sim_Transaction_Inquiry = 256,
Sim_Transaction_Incoherent = 512,
Sim_Transaction_Atomic = 1_024,
}
Expand description
Sim_Transaction_Fetch indicates that the transaction is an instruction fetch.
Sim_Transaction_Write is set if the transaction is a write.
Sim_Transaction_Control is set if the transaction does not actually transfer any data. One example of such transactions is cache control operations.
The Sim_Transaction_Inquiry bit signifies that side effects normally triggered by the transaction should be suppressed. Examples of side effects include triggering breakpoints and clearing “read-to-clear” device registers.
When neither Sim_Transaction_Fetch nor Sim_Transaction_Write is set the transaction is a read transaction.
Variants§
Sim_Transaction_Fetch = 1
Sim_Transaction_Write = 2
Sim_Transaction_Control = 4
Sim_Transaction_Inquiry = 256
Sim_Transaction_Incoherent = 512
Sim_Transaction_Atomic = 1_024
Trait Implementations§
source§impl Clone for transaction_flags_t
impl Clone for transaction_flags_t
source§fn clone(&self) -> transaction_flags_t
fn clone(&self) -> transaction_flags_t
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for transaction_flags_t
impl Debug for transaction_flags_t
source§impl Hash for transaction_flags_t
impl Hash for transaction_flags_t
source§impl Ord for transaction_flags_t
impl Ord for transaction_flags_t
source§fn cmp(&self, other: &transaction_flags_t) -> Ordering
fn cmp(&self, other: &transaction_flags_t) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for transaction_flags_t
impl PartialEq for transaction_flags_t
source§impl PartialOrd for transaction_flags_t
impl PartialOrd for transaction_flags_t
impl Copy for transaction_flags_t
impl Eq for transaction_flags_t
impl StructuralPartialEq for transaction_flags_t
Auto Trait Implementations§
impl Freeze for transaction_flags_t
impl RefUnwindSafe for transaction_flags_t
impl Send for transaction_flags_t
impl Sync for transaction_flags_t
impl Unpin for transaction_flags_t
impl UnwindSafe for transaction_flags_t
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)