pub enum FindingSource {
Audit,
Deny,
}Expand description
Which tool emitted a Finding.
Variants§
Audit
cargo-audit (RustSec advisory database).
Deny
cargo-deny (license / banned crates / sources policy).
Trait Implementations§
Source§impl Clone for FindingSource
impl Clone for FindingSource
Source§fn clone(&self) -> FindingSource
fn clone(&self) -> FindingSource
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 FindingSource
impl Debug for FindingSource
Source§impl<'de> Deserialize<'de> for FindingSource
impl<'de> Deserialize<'de> for FindingSource
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
Source§impl PartialEq for FindingSource
impl PartialEq for FindingSource
Source§fn eq(&self, other: &FindingSource) -> bool
fn eq(&self, other: &FindingSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FindingSource
impl Serialize for FindingSource
impl Copy for FindingSource
impl Eq for FindingSource
impl StructuralPartialEq for FindingSource
Auto Trait Implementations§
impl Freeze for FindingSource
impl RefUnwindSafe for FindingSource
impl Send for FindingSource
impl Sync for FindingSource
impl Unpin for FindingSource
impl UnsafeUnpin for FindingSource
impl UnwindSafe for FindingSource
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