pub struct SecretMatch {
pub detector: &'static str,
pub masked: String,
}Expand description
Returned when a write would store credential-looking content.
Carries the detector name and a masked excerpt (first6...Nchars). The
full candidate is never stored in the error.
Fields§
§detector: &'static strHuman-readable name of the detector that fired.
masked: Stringfirst6...N — the first 6 chars of the match followed by the total length.
Trait Implementations§
Source§impl Clone for SecretMatch
impl Clone for SecretMatch
Source§fn clone(&self) -> SecretMatch
fn clone(&self) -> SecretMatch
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 SecretMatch
impl Debug for SecretMatch
Source§impl Display for SecretMatch
impl Display for SecretMatch
impl Eq for SecretMatch
Source§impl PartialEq for SecretMatch
impl PartialEq for SecretMatch
Source§fn eq(&self, other: &SecretMatch) -> bool
fn eq(&self, other: &SecretMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecretMatch
Auto Trait Implementations§
impl Freeze for SecretMatch
impl RefUnwindSafe for SecretMatch
impl Send for SecretMatch
impl Sync for SecretMatch
impl Unpin for SecretMatch
impl UnsafeUnpin for SecretMatch
impl UnwindSafe for SecretMatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.