#[repr(u8)]pub enum AuthenticationTask {
DeAuthenticate = 0,
VerifyCertificateUnidirectional = 1,
VerifyCertificateBidirectional = 2,
ProofOfOwnership = 3,
TransmitCertificate = 4,
RequestChallengeForAuthentication = 5,
VerifyProofOfOwnershipUnidirectional = 6,
VerifyProofOfOwnershipBidirectional = 7,
AuthenticationConfiguration = 8,
}Variants§
DeAuthenticate = 0
VerifyCertificateUnidirectional = 1
VerifyCertificateBidirectional = 2
ProofOfOwnership = 3
TransmitCertificate = 4
RequestChallengeForAuthentication = 5
VerifyProofOfOwnershipUnidirectional = 6
VerifyProofOfOwnershipBidirectional = 7
AuthenticationConfiguration = 8
Trait Implementations§
Source§impl Clone for AuthenticationTask
impl Clone for AuthenticationTask
Source§fn clone(&self) -> AuthenticationTask
fn clone(&self) -> AuthenticationTask
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 AuthenticationTask
impl Debug for AuthenticationTask
Source§impl Hash for AuthenticationTask
impl Hash for AuthenticationTask
Source§impl Into<u8> for AuthenticationTask
impl Into<u8> for AuthenticationTask
Source§impl PartialEq for AuthenticationTask
impl PartialEq for AuthenticationTask
Source§impl TryFrom<u8> for AuthenticationTask
impl TryFrom<u8> for AuthenticationTask
impl Copy for AuthenticationTask
impl Eq for AuthenticationTask
impl StructuralPartialEq for AuthenticationTask
Auto Trait Implementations§
impl Freeze for AuthenticationTask
impl RefUnwindSafe for AuthenticationTask
impl Send for AuthenticationTask
impl Sync for AuthenticationTask
impl Unpin for AuthenticationTask
impl UnwindSafe for AuthenticationTask
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