pub struct WafDetectionResult {
pub detected: bool,
pub primary_waf: Option<WafMatch>,
pub all_detected: Vec<WafMatch>,
}Available on crate feature
security-analysis-mobile only.Fields§
§detected: bool§primary_waf: Option<WafMatch>§all_detected: Vec<WafMatch>Trait Implementations§
Source§impl Clone for WafDetectionResult
impl Clone for WafDetectionResult
Source§fn clone(&self) -> WafDetectionResult
fn clone(&self) -> WafDetectionResult
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 WafDetectionResult
impl Debug for WafDetectionResult
Source§impl<'de> Deserialize<'de> for WafDetectionResult
impl<'de> Deserialize<'de> for WafDetectionResult
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
Auto Trait Implementations§
impl Freeze for WafDetectionResult
impl RefUnwindSafe for WafDetectionResult
impl Send for WafDetectionResult
impl Sync for WafDetectionResult
impl Unpin for WafDetectionResult
impl UnsafeUnpin for WafDetectionResult
impl UnwindSafe for WafDetectionResult
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