pub enum ScanProfile {
General,
CloudNative,
DistributedSystems,
IndustrialSafety,
SupplyChain,
}Expand description
Legacy interpretation hint for the DSFB static crate scan.
DSFB now emits one canonical broad audit and uses conclusion lenses at the end of the report instead of primary profile-driven report identities. This enum is retained so older callers can still pass an interpretation hint while the scanner continues to collect the same full evidence set.
Variants§
General
General-purpose legacy hint.
CloudNative
Legacy cloud-native / async-service hint.
DistributedSystems
Legacy distributed systems / consensus / networking hint.
IndustrialSafety
Legacy industrial / safety-monitoring hint.
SupplyChain
Legacy supply-chain / provenance / secure-build hint.
Implementations§
Trait Implementations§
Source§impl Clone for ScanProfile
impl Clone for ScanProfile
Source§fn clone(&self) -> ScanProfile
fn clone(&self) -> ScanProfile
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 ScanProfile
impl Debug for ScanProfile
Source§impl PartialEq for ScanProfile
impl PartialEq for ScanProfile
impl Copy for ScanProfile
impl Eq for ScanProfile
impl StructuralPartialEq for ScanProfile
Auto Trait Implementations§
impl Freeze for ScanProfile
impl RefUnwindSafe for ScanProfile
impl Send for ScanProfile
impl Sync for ScanProfile
impl Unpin for ScanProfile
impl UnsafeUnpin for ScanProfile
impl UnwindSafe for ScanProfile
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