pub enum AnalysisDepth {
Shallow,
Full,
Deep,
}Expand description
Depth of analysis performed by the sensor.
Variants§
Shallow
Quick scan, may have false negatives
Full
Standard analysis
Deep
Comprehensive analysis with cross-referencing
Trait Implementations§
Source§impl Clone for AnalysisDepth
impl Clone for AnalysisDepth
Source§fn clone(&self) -> AnalysisDepth
fn clone(&self) -> AnalysisDepth
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 moreSource§impl Debug for AnalysisDepth
impl Debug for AnalysisDepth
Source§impl Default for AnalysisDepth
impl Default for AnalysisDepth
Source§fn default() -> AnalysisDepth
fn default() -> AnalysisDepth
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalysisDepth
impl<'de> Deserialize<'de> for AnalysisDepth
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 AnalysisDepth
impl PartialEq for AnalysisDepth
Source§impl Serialize for AnalysisDepth
impl Serialize for AnalysisDepth
impl Copy for AnalysisDepth
impl Eq for AnalysisDepth
impl StructuralPartialEq for AnalysisDepth
Auto Trait Implementations§
impl Freeze for AnalysisDepth
impl RefUnwindSafe for AnalysisDepth
impl Send for AnalysisDepth
impl Sync for AnalysisDepth
impl Unpin for AnalysisDepth
impl UnsafeUnpin for AnalysisDepth
impl UnwindSafe for AnalysisDepth
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