#[non_exhaustive]
pub enum Result {
ActivateCredential {
name: Zeroizing<Vec<u8>>,
public: Zeroizing<Vec<u8>>,
attesting_key_pub: Zeroizing<Vec<u8>>,
},
}
Expand description
Native result of retrieving key attestation parameters
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.
ActivateCredential
Fields
Parameters for TPM 2.0 ActivateCredential operation
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Result
impl Send for Result
impl Sync for Result
impl Unpin for Result
impl UnwindSafe for Result
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more