#[non_exhaustive]pub enum Request<'a> {
MakeCredential(Request<'a>),
GetAssertion(Request<'a>),
GetNextAssertion,
GetInfo,
ClientPin(Request<'a>),
Reset,
CredentialManagement(Request<'a>),
Selection,
LargeBlobs(Request<'a>),
Vendor(VendorOperation),
}
Expand description
Enum of all CTAP2 requests.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MakeCredential(Request<'a>)
GetAssertion(Request<'a>)
GetNextAssertion
GetInfo
ClientPin(Request<'a>)
Reset
CredentialManagement(Request<'a>)
Selection
LargeBlobs(Request<'a>)
Vendor(VendorOperation)
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for Request<'a>
Auto Trait Implementations§
impl<'a> Freeze for Request<'a>
impl<'a> RefUnwindSafe for Request<'a>
impl<'a> Send for Request<'a>
impl<'a> Sync for Request<'a>
impl<'a> Unpin for Request<'a>
impl<'a> UnwindSafe for Request<'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