pub enum SecretTaint {
None,
Redacted,
}Expand description
Public indication that sensitive input was removed before persistence.
Variants§
None
No configured secret matched the persisted public statement.
Redacted
Sensitive material matched and only a redacted statement was retained.
Trait Implementations§
Source§impl Clone for SecretTaint
impl Clone for SecretTaint
Source§fn clone(&self) -> SecretTaint
fn clone(&self) -> SecretTaint
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 SecretTaint
Source§impl Debug for SecretTaint
impl Debug for SecretTaint
Source§impl Default for SecretTaint
impl Default for SecretTaint
Source§fn default() -> SecretTaint
fn default() -> SecretTaint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretTaint
impl<'de> Deserialize<'de> for SecretTaint
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
impl Eq for SecretTaint
Source§impl PartialEq for SecretTaint
impl PartialEq for SecretTaint
Source§impl Serialize for SecretTaint
impl Serialize for SecretTaint
impl StructuralPartialEq for SecretTaint
Auto Trait Implementations§
impl Freeze for SecretTaint
impl RefUnwindSafe for SecretTaint
impl Send for SecretTaint
impl Sync for SecretTaint
impl Unpin for SecretTaint
impl UnsafeUnpin for SecretTaint
impl UnwindSafe for SecretTaint
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