Enum rsim::processor::isa_mods::vector::decode::RvvMopType[][src]

enum RvvMopType {
    UnitStride,
    Strided(u64),
    Indexed {
        ordered: bool,
    },
}

Memory OPeration enum

Vector Load/Store operations have four variants:

Variants

UnitStride
Strided(u64)
Indexed
Show fields

Fields of Indexed

ordered: bool

Trait Implementations

impl Clone for RvvMopType[src]

impl Debug for RvvMopType[src]

impl PartialEq<RvvMopType> for RvvMopType[src]

impl Copy for RvvMopType[src]

impl Eq for RvvMopType[src]

impl StructuralEq for RvvMopType[src]

impl StructuralPartialEq for RvvMopType[src]

Auto Trait Implementations

impl RefUnwindSafe for RvvMopType

impl Send for RvvMopType

impl Sync for RvvMopType

impl Unpin for RvvMopType

impl UnwindSafe for RvvMopType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.