pub enum SecurityAccessResponse<'a> {
KeyResponse(u8),
SeedResponse(SeedResponse<'a>),
}Variants§
KeyResponse(u8)
SeedResponse(SeedResponse<'a>)
Trait Implementations§
Source§impl<'a> Clone for SecurityAccessResponse<'a>
impl<'a> Clone for SecurityAccessResponse<'a>
Source§fn clone(&self) -> SecurityAccessResponse<'a>
fn clone(&self) -> SecurityAccessResponse<'a>
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<'a> Debug for SecurityAccessResponse<'a>
impl<'a> Debug for SecurityAccessResponse<'a>
Source§impl<'a> FrameRead<'a> for SecurityAccessResponse<'a>
impl<'a> FrameRead<'a> for SecurityAccessResponse<'a>
Source§impl FrameWrite for SecurityAccessResponse<'_>
impl FrameWrite for SecurityAccessResponse<'_>
Source§impl<'a> Ord for SecurityAccessResponse<'a>
impl<'a> Ord for SecurityAccessResponse<'a>
Source§fn cmp(&self, other: &SecurityAccessResponse<'a>) -> Ordering
fn cmp(&self, other: &SecurityAccessResponse<'a>) -> 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<'a> PartialEq for SecurityAccessResponse<'a>
impl<'a> PartialEq for SecurityAccessResponse<'a>
Source§impl<'a> PartialOrd for SecurityAccessResponse<'a>
impl<'a> PartialOrd for SecurityAccessResponse<'a>
impl<'a> Eq for SecurityAccessResponse<'a>
impl<'a> StructuralPartialEq for SecurityAccessResponse<'a>
Auto Trait Implementations§
impl<'a> Freeze for SecurityAccessResponse<'a>
impl<'a> RefUnwindSafe for SecurityAccessResponse<'a>
impl<'a> Send for SecurityAccessResponse<'a>
impl<'a> Sync for SecurityAccessResponse<'a>
impl<'a> Unpin for SecurityAccessResponse<'a>
impl<'a> UnsafeUnpin for SecurityAccessResponse<'a>
impl<'a> UnwindSafe for SecurityAccessResponse<'a>
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