pub struct SecretScan {
pub redacted: String,
pub findings: Vec<SecretFinding>,
}Expand description
Result of scanning and redacting a text payload.
Fields§
§redacted: String§findings: Vec<SecretFinding>Trait Implementations§
Source§impl Clone for SecretScan
impl Clone for SecretScan
Source§fn clone(&self) -> SecretScan
fn clone(&self) -> SecretScan
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 SecretScan
impl Debug for SecretScan
impl Eq for SecretScan
Source§impl PartialEq for SecretScan
impl PartialEq for SecretScan
impl StructuralPartialEq for SecretScan
Auto Trait Implementations§
impl Freeze for SecretScan
impl RefUnwindSafe for SecretScan
impl Send for SecretScan
impl Sync for SecretScan
impl Unpin for SecretScan
impl UnsafeUnpin for SecretScan
impl UnwindSafe for SecretScan
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