#[repr(u64)]
pub enum Value {
    Bits_32,
    Bits_36,
    Bits_40,
    Bits_42,
    Bits_44,
    Bits_48,
    Bits_52,
}
Expand description

Physical Address range supported. Defined values are:

0000 32 bits, 4GiB. 0001 36 bits, 64GiB. 0010 40 bits, 1TiB. 0011 42 bits, 4TiB. 0100 44 bits, 16TiB. 0101 48 bits, 256TiB. 0110 52 bits, 4PiB.

All other values are reserved.

The value 0110 is permitted only if the implementation includes ARMv8.2-LPA, otherwise it is reserved.

Variants

Bits_32

Bits_36

Bits_40

Bits_42

Bits_44

Bits_48

Bits_52

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.