pub struct DetectionScore {
pub framework: FrameworkType,
pub confidence: f32,
pub reasons: Vec<String>,
}
Expand description
Detection confidence score
Fields§
§framework: FrameworkType
§confidence: f32
§reasons: Vec<String>
Trait Implementations§
Source§impl Clone for DetectionScore
impl Clone for DetectionScore
Source§fn clone(&self) -> DetectionScore
fn clone(&self) -> DetectionScore
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 moreAuto Trait Implementations§
impl Freeze for DetectionScore
impl RefUnwindSafe for DetectionScore
impl Send for DetectionScore
impl Sync for DetectionScore
impl Unpin for DetectionScore
impl UnwindSafe for DetectionScore
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