[][src]Enum cortex_a::regs::SCTLR_EL1::A::Value

#[repr(u64)]pub enum Value {
    Disable,
    Enable,
}

Alignment check enable. This is the enable bit for Alignment fault checking at EL1 and EL0.

Instructions that load or store one or more registers, other than load/store exclusive and load-acquire/store-release, will or will not check that the address being accessed is aligned to the size of the data element(s) being accessed depending on this flag.

Load/store exclusive and load-acquire/store-release instructions have an alignment check regardless of the value of the A bit.

Variants

Disable
Enable

Trait Implementations

impl TryFromValue<u64> for Value[src]

type EnumType = Value

Auto Trait Implementations

impl Send for Value

impl Sync for Value

impl Unpin for Value

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, 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.