pub enum AttachSecretProof {
Mismatch,
Verified,
}Expand description
Secret-verifier result supplied by the consuming cryptographic layer for credential attach lookup.
Variants§
Mismatch
The constant-time verifier rejected the presented secret.
Verified
The constant-time verifier accepted the presented secret.
Trait Implementations§
Source§impl Clone for AttachSecretProof
impl Clone for AttachSecretProof
Source§fn clone(&self) -> AttachSecretProof
fn clone(&self) -> AttachSecretProof
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AttachSecretProof
Source§impl Debug for AttachSecretProof
impl Debug for AttachSecretProof
impl Eq for AttachSecretProof
Source§impl PartialEq for AttachSecretProof
impl PartialEq for AttachSecretProof
impl StructuralPartialEq for AttachSecretProof
Auto Trait Implementations§
impl Freeze for AttachSecretProof
impl RefUnwindSafe for AttachSecretProof
impl Send for AttachSecretProof
impl Sync for AttachSecretProof
impl Unpin for AttachSecretProof
impl UnsafeUnpin for AttachSecretProof
impl UnwindSafe for AttachSecretProof
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