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