pub struct AuthCredentialSecret(pub Vec<u8>);Expand description
Supplementary credential secret marker — PII_CODE = 0x0004. The
primary AuthCredential KDF salt is already per-credential random; this
marker covers auxiliary secret storage kept encrypted alongside the
credential (PII_CODE table).
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl Clone for AuthCredentialSecret
impl Clone for AuthCredentialSecret
Source§fn clone(&self) -> AuthCredentialSecret
fn clone(&self) -> AuthCredentialSecret
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 moreSource§impl Debug for AuthCredentialSecret
impl Debug for AuthCredentialSecret
Source§impl<'de> Deserialize<'de> for AuthCredentialSecret
impl<'de> Deserialize<'de> for AuthCredentialSecret
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthCredentialSecret
impl PartialEq for AuthCredentialSecret
Source§fn eq(&self, other: &AuthCredentialSecret) -> bool
fn eq(&self, other: &AuthCredentialSecret) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PiiType for AuthCredentialSecret
impl PiiType for AuthCredentialSecret
Source§impl Serialize for AuthCredentialSecret
impl Serialize for AuthCredentialSecret
impl Eq for AuthCredentialSecret
impl StructuralPartialEq for AuthCredentialSecret
Auto Trait Implementations§
impl Freeze for AuthCredentialSecret
impl RefUnwindSafe for AuthCredentialSecret
impl Send for AuthCredentialSecret
impl Sync for AuthCredentialSecret
impl Unpin for AuthCredentialSecret
impl UnsafeUnpin for AuthCredentialSecret
impl UnwindSafe for AuthCredentialSecret
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