pub struct DetectionResult {
pub is_injection: bool,
pub fingerprint: Option<String>,
}Expand description
Result of injection detection.
Fields§
§is_injection: boolWhether injection was detected.
fingerprint: Option<String>Fingerprint that matched (if any).
Implementations§
Trait Implementations§
Source§impl Clone for DetectionResult
impl Clone for DetectionResult
Source§fn clone(&self) -> DetectionResult
fn clone(&self) -> DetectionResult
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 DetectionResult
impl RefUnwindSafe for DetectionResult
impl Send for DetectionResult
impl Sync for DetectionResult
impl Unpin for DetectionResult
impl UnwindSafe for DetectionResult
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