#[repr(u64)]
pub enum Value {
    NoAccess,
    Client,
    Manager,
}
Expand description

Domain 3 access permission.

Values other than the pre-defined ones are reserved.

NOTE: On Warm reset, this field resets to an undefined value.

Variants

NoAccess

No access. Any access to the domain generates a Domain fault.

Client

Client access. Accesses are not checked against the permission bits in the translation tables.

Manager

Manager access. Accesses are not checked against the permission bits in the translation tables.

Trait Implementations

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.