#[repr(u8)]pub enum AhbSecCtrlRule {
ENUM_NS_NP = 0,
ENUM_NS_P = 1,
ENUM_S_NP = 2,
ENUM_S_P = 3,
}Variants§
ENUM_NS_NP = 0
Non-secure and Non-priviledge user access allowed.
ENUM_NS_P = 1
Non-secure and Privilege access allowed.
ENUM_S_NP = 2
Secure and Non-priviledge user access allowed.
ENUM_S_P = 3
Secure and Priviledge user access allowed.
Implementations§
Trait Implementations§
Source§impl Clone for AhbSecCtrlRule
impl Clone for AhbSecCtrlRule
Source§fn clone(&self) -> AhbSecCtrlRule
fn clone(&self) -> AhbSecCtrlRule
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AhbSecCtrlRule
impl Debug for AhbSecCtrlRule
Source§impl From<AhbSecCtrlRule> for u8
impl From<AhbSecCtrlRule> for u8
Source§fn from(val: AhbSecCtrlRule) -> u8
fn from(val: AhbSecCtrlRule) -> u8
Converts to this type from the input type.
Source§impl From<u8> for AhbSecCtrlRule
impl From<u8> for AhbSecCtrlRule
Source§fn from(val: u8) -> AhbSecCtrlRule
fn from(val: u8) -> AhbSecCtrlRule
Converts to this type from the input type.
Source§impl Ord for AhbSecCtrlRule
impl Ord for AhbSecCtrlRule
Source§fn cmp(&self, other: &AhbSecCtrlRule) -> Ordering
fn cmp(&self, other: &AhbSecCtrlRule) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AhbSecCtrlRule
impl PartialEq for AhbSecCtrlRule
Source§impl PartialOrd for AhbSecCtrlRule
impl PartialOrd for AhbSecCtrlRule
impl Copy for AhbSecCtrlRule
impl Eq for AhbSecCtrlRule
impl StructuralPartialEq for AhbSecCtrlRule
Auto Trait Implementations§
impl Freeze for AhbSecCtrlRule
impl RefUnwindSafe for AhbSecCtrlRule
impl Send for AhbSecCtrlRule
impl Sync for AhbSecCtrlRule
impl Unpin for AhbSecCtrlRule
impl UnwindSafe for AhbSecCtrlRule
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