pub enum TlbOp {
Read,
WriteIndexed,
WriteRandom,
Probe,
}Expand description
The four TLB instructions.
Variants§
Read
TLBR — entry → COP0 registers.
WriteIndexed
TLBWI — COP0 registers → entry Index.
WriteRandom
TLBWR — COP0 registers → entry Random.
Probe
TLBP — probe, reporting through Index.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TlbOp
impl<'de> Deserialize<'de> for TlbOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for TlbOp
impl Eq for TlbOp
impl StructuralPartialEq for TlbOp
Auto Trait Implementations§
impl Freeze for TlbOp
impl RefUnwindSafe for TlbOp
impl Send for TlbOp
impl Sync for TlbOp
impl Unpin for TlbOp
impl UnsafeUnpin for TlbOp
impl UnwindSafe for TlbOp
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