#[repr(u8)]pub enum SdioRule {
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 Ord for SdioRule
impl Ord for SdioRule
Source§impl PartialOrd for SdioRule
impl PartialOrd for SdioRule
impl Copy for SdioRule
impl Eq for SdioRule
impl StructuralPartialEq for SdioRule
Auto Trait Implementations§
impl Freeze for SdioRule
impl RefUnwindSafe for SdioRule
impl Send for SdioRule
impl Sync for SdioRule
impl Unpin for SdioRule
impl UnwindSafe for SdioRule
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