pub struct FilterMethod;Expand description
Represents methods available to call in UserFilter.
Implementations§
Source§impl FilterMethod
impl FilterMethod
pub const START_ANALYZE: u8 = 0b00000001
pub const END_ANALYZE: u8 = 0b00000010
pub const HTTP_HEADERS: u8 = 0b00000100
pub const HTTP_PAYLOAD: u8 = 0b00001000
pub const HTTP_END: u8 = 0b00010000
pub const ALL: u8 = u8::MAX
Auto Trait Implementations§
impl Freeze for FilterMethod
impl RefUnwindSafe for FilterMethod
impl Send for FilterMethod
impl Sync for FilterMethod
impl Unpin for FilterMethod
impl UnsafeUnpin for FilterMethod
impl UnwindSafe for FilterMethod
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more