#[repr(u8)]pub enum EcdhSource {
Slot = 0,
TempKey = 1,
}
Expand description
Private key source for ECDH
Variants§
Slot = 0
source key in a slot
TempKey = 1
source key in TempKey (only relevant for the ATECC608x chip)
Trait Implementations§
Source§impl Clone for EcdhSource
impl Clone for EcdhSource
Source§fn clone(&self) -> EcdhSource
fn clone(&self) -> EcdhSource
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 EcdhSource
impl Debug for EcdhSource
Source§impl PartialEq for EcdhSource
impl PartialEq for EcdhSource
impl StructuralPartialEq for EcdhSource
Auto Trait Implementations§
impl Freeze for EcdhSource
impl RefUnwindSafe for EcdhSource
impl Send for EcdhSource
impl Sync for EcdhSource
impl Unpin for EcdhSource
impl UnwindSafe for EcdhSource
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