pub enum RunResult {
NoMatch(RunOutput),
Match(RunOutput),
}
Expand description
The result of the Context::run
operation.
Variants§
NoMatch(RunOutput)
The WAF successfully processed the request, and produced no match.
Match(RunOutput)
The WAF successfully processed the request and some event rules matched some of the supplied address data.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnwindSafe for RunResult
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