pub enum AuthenticationResponse<'a> {
DeAuthenticateResponse(DeAuthenticateResponse),
VerifyCertificateUnidirectionalResponse(VerifyCertificateUnidirectionalResponse<'a>),
VerifyCertificateBidirectionalResponse(VerifyCertificateBidirectionalResponse<'a>),
ProofOfOwnershipResponse(ProofOfOwnershipResponse<'a>),
TransmitCertificateResponse(TransmitCertificateResponse),
RequestChallengeForAuthenticationResponse(RequestChallengeForAuthenticationResponse<'a>),
VerifyProofOfOwnershipUnidirectionalResponse(VerifyProofOfOwnershipUnidirectionalResponse<'a>),
VerifyProofOfOwnershipBidirectionalResponse(VerifyProofOfOwnershipBidirectionalResponse<'a>),
AuthenticationConfigurationResponse(AuthenticationConfigurationResponse),
}Variants§
DeAuthenticateResponse(DeAuthenticateResponse)
VerifyCertificateUnidirectionalResponse(VerifyCertificateUnidirectionalResponse<'a>)
VerifyCertificateBidirectionalResponse(VerifyCertificateBidirectionalResponse<'a>)
ProofOfOwnershipResponse(ProofOfOwnershipResponse<'a>)
TransmitCertificateResponse(TransmitCertificateResponse)
RequestChallengeForAuthenticationResponse(RequestChallengeForAuthenticationResponse<'a>)
VerifyProofOfOwnershipUnidirectionalResponse(VerifyProofOfOwnershipUnidirectionalResponse<'a>)
VerifyProofOfOwnershipBidirectionalResponse(VerifyProofOfOwnershipBidirectionalResponse<'a>)
AuthenticationConfigurationResponse(AuthenticationConfigurationResponse)
Trait Implementations§
Source§impl<'a> Clone for AuthenticationResponse<'a>
impl<'a> Clone for AuthenticationResponse<'a>
Source§fn clone(&self) -> AuthenticationResponse<'a>
fn clone(&self) -> AuthenticationResponse<'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 AuthenticationResponse<'a>
impl<'a> Debug for AuthenticationResponse<'a>
Source§impl<'a> FrameRead<'a> for AuthenticationResponse<'a>
impl<'a> FrameRead<'a> for AuthenticationResponse<'a>
Source§impl<'a> FrameWrite for AuthenticationResponse<'a>
impl<'a> FrameWrite for AuthenticationResponse<'a>
Source§impl<'a> Ord for AuthenticationResponse<'a>
impl<'a> Ord for AuthenticationResponse<'a>
Source§fn cmp(&self, other: &AuthenticationResponse<'a>) -> Ordering
fn cmp(&self, other: &AuthenticationResponse<'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 AuthenticationResponse<'a>
impl<'a> PartialEq for AuthenticationResponse<'a>
Source§impl<'a> PartialOrd for AuthenticationResponse<'a>
impl<'a> PartialOrd for AuthenticationResponse<'a>
impl<'a> Eq for AuthenticationResponse<'a>
impl<'a> StructuralPartialEq for AuthenticationResponse<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuthenticationResponse<'a>
impl<'a> RefUnwindSafe for AuthenticationResponse<'a>
impl<'a> Send for AuthenticationResponse<'a>
impl<'a> Sync for AuthenticationResponse<'a>
impl<'a> Unpin for AuthenticationResponse<'a>
impl<'a> UnsafeUnpin for AuthenticationResponse<'a>
impl<'a> UnwindSafe for AuthenticationResponse<'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