Enum rustv::memory::MemoryError [] [src]

pub enum MemoryError {
    InvalidAddress,
    CacheMiss {
        stall_cycles: u32,
        retry: bool,
    },
}

Variants

Fields of CacheMiss

How many cycles to stall

Whether the load or store should be retried

Trait Implementations

impl Clone for MemoryError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MemoryError
[src]

Formats the value using the given formatter.

impl PartialEq for MemoryError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.