Enum rustv::memory::MemoryError
[−]
[src]
pub enum MemoryError { InvalidAddress, CacheMiss { stall_cycles: u32, retry: bool, }, }
Variants
InvalidAddress
CacheMiss
Fields of CacheMiss
stall_cycles: u32 | How many cycles to stall |
retry: bool | Whether the load or store should be retried |
Trait Implementations
impl Clone for MemoryError
[src]
fn clone(&self) -> MemoryError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Debug for MemoryError
[src]
impl PartialEq for MemoryError
[src]
fn eq(&self, __arg_0: &MemoryError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &MemoryError) -> bool
This method tests for !=
.