pub struct ScanFinding {
pub key: String,
pub path: String,
}Expand description
A single scan finding: a secret key was found in a file.
Fields§
§key: StringThe secret key name that was found.
path: StringThe file path where the value was found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanFinding
impl RefUnwindSafe for ScanFinding
impl Send for ScanFinding
impl Sync for ScanFinding
impl Unpin for ScanFinding
impl UnsafeUnpin for ScanFinding
impl UnwindSafe for ScanFinding
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