pub struct SecretMatch {
pub pattern: String,
pub count: usize,
}Expand description
A match for a potential secret pattern
Fields§
§pattern: StringThe pattern key that matched
count: usizeNumber of matches found
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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