pub enum AuthenticationRequest<'a> {
DeAuthenticateRequest(DeAuthenticateRequest),
VerifyCertificateUnidirectionalRequest(VerifyCertificateUnidirectionalRequest<'a>),
VerifyCertificateBidirectionalRequest(VerifyCertificateBidirectionalRequest<'a>),
ProofOfOwnershipRequest(ProofOfOwnershipRequest<'a>),
TransmitCertificateRequest(TransmitCertificateRequest<'a>),
RequestChallengeForAuthenticationRequest(RequestChallengeForAuthenticationRequest),
VerifyProofOfOwnershipUnidirectionalRequest(VerifyProofOfOwnershipUnidirectionalRequest<'a>),
VerifyProofOfOwnershipBidirectionalRequest(VerifyProofOfOwnershipBidirectionalRequest<'a>),
AuthenticationConfigurationRequest(AuthenticationConfigurationRequest),
IsoSaeReserved(u8),
}Variants§
DeAuthenticateRequest(DeAuthenticateRequest)
VerifyCertificateUnidirectionalRequest(VerifyCertificateUnidirectionalRequest<'a>)
VerifyCertificateBidirectionalRequest(VerifyCertificateBidirectionalRequest<'a>)
ProofOfOwnershipRequest(ProofOfOwnershipRequest<'a>)
TransmitCertificateRequest(TransmitCertificateRequest<'a>)
RequestChallengeForAuthenticationRequest(RequestChallengeForAuthenticationRequest)
VerifyProofOfOwnershipUnidirectionalRequest(VerifyProofOfOwnershipUnidirectionalRequest<'a>)
VerifyProofOfOwnershipBidirectionalRequest(VerifyProofOfOwnershipBidirectionalRequest<'a>)
AuthenticationConfigurationRequest(AuthenticationConfigurationRequest)
IsoSaeReserved(u8)
Trait Implementations§
Source§impl<'a> Clone for AuthenticationRequest<'a>
impl<'a> Clone for AuthenticationRequest<'a>
Source§fn clone(&self) -> AuthenticationRequest<'a>
fn clone(&self) -> AuthenticationRequest<'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 AuthenticationRequest<'a>
impl<'a> Debug for AuthenticationRequest<'a>
Source§impl<'a> FrameRead<'a> for AuthenticationRequest<'a>
impl<'a> FrameRead<'a> for AuthenticationRequest<'a>
Source§impl<'a> FrameWrite for AuthenticationRequest<'a>
impl<'a> FrameWrite for AuthenticationRequest<'a>
Source§impl<'a> Ord for AuthenticationRequest<'a>
impl<'a> Ord for AuthenticationRequest<'a>
Source§fn cmp(&self, other: &AuthenticationRequest<'a>) -> Ordering
fn cmp(&self, other: &AuthenticationRequest<'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 AuthenticationRequest<'a>
impl<'a> PartialEq for AuthenticationRequest<'a>
Source§impl<'a> PartialOrd for AuthenticationRequest<'a>
impl<'a> PartialOrd for AuthenticationRequest<'a>
impl<'a> Eq for AuthenticationRequest<'a>
impl<'a> StructuralPartialEq for AuthenticationRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuthenticationRequest<'a>
impl<'a> RefUnwindSafe for AuthenticationRequest<'a>
impl<'a> Send for AuthenticationRequest<'a>
impl<'a> Sync for AuthenticationRequest<'a>
impl<'a> Unpin for AuthenticationRequest<'a>
impl<'a> UnsafeUnpin for AuthenticationRequest<'a>
impl<'a> UnwindSafe for AuthenticationRequest<'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