pub struct CustomDetection {
pub rule_name: String,
pub vendor: String,
pub confidence: f64,
pub evasion_strategies: Vec<String>,
}Expand description
Result of matching a custom rule against a response.
Fields§
§rule_name: String§vendor: String§confidence: f64§evasion_strategies: Vec<String>Trait Implementations§
Source§impl Clone for CustomDetection
impl Clone for CustomDetection
Source§fn clone(&self) -> CustomDetection
fn clone(&self) -> CustomDetection
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 moreAuto Trait Implementations§
impl Freeze for CustomDetection
impl RefUnwindSafe for CustomDetection
impl Send for CustomDetection
impl Sync for CustomDetection
impl Unpin for CustomDetection
impl UnsafeUnpin for CustomDetection
impl UnwindSafe for CustomDetection
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