#[repr(u8)]pub enum OcramErrStatus {
OCRAM_ERR_STATUS_0 = 0,
OCRAM_ERR_STATUS_1 = 1,
}Variants§
OCRAM_ERR_STATUS_0 = 0
OCRAM access error does not happen
OCRAM_ERR_STATUS_1 = 1
OCRAM access error happens.
Implementations§
Trait Implementations§
Source§impl Clone for OcramErrStatus
impl Clone for OcramErrStatus
Source§fn clone(&self) -> OcramErrStatus
fn clone(&self) -> OcramErrStatus
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 OcramErrStatus
impl Debug for OcramErrStatus
Source§impl From<OcramErrStatus> for u8
impl From<OcramErrStatus> for u8
Source§fn from(val: OcramErrStatus) -> u8
fn from(val: OcramErrStatus) -> u8
Converts to this type from the input type.
Source§impl From<u8> for OcramErrStatus
impl From<u8> for OcramErrStatus
Source§fn from(val: u8) -> OcramErrStatus
fn from(val: u8) -> OcramErrStatus
Converts to this type from the input type.
Source§impl Ord for OcramErrStatus
impl Ord for OcramErrStatus
Source§fn cmp(&self, other: &OcramErrStatus) -> Ordering
fn cmp(&self, other: &OcramErrStatus) -> 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 OcramErrStatus
impl PartialEq for OcramErrStatus
Source§impl PartialOrd for OcramErrStatus
impl PartialOrd for OcramErrStatus
impl Copy for OcramErrStatus
impl Eq for OcramErrStatus
impl StructuralPartialEq for OcramErrStatus
Auto Trait Implementations§
impl Freeze for OcramErrStatus
impl RefUnwindSafe for OcramErrStatus
impl Send for OcramErrStatus
impl Sync for OcramErrStatus
impl Unpin for OcramErrStatus
impl UnwindSafe for OcramErrStatus
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