pub enum FlushFilterOutput {
Keep,
Drop,
Replace(Vec<u8>),
}Expand description
Output of a flush filter.
Variants§
Keep
Insert the entry as is.
Drop
Remove this entry.
Replace(Vec<u8>)
Replace this entry with the specified new content.
Auto Trait Implementations§
impl Freeze for FlushFilterOutput
impl RefUnwindSafe for FlushFilterOutput
impl Send for FlushFilterOutput
impl Sync for FlushFilterOutput
impl Unpin for FlushFilterOutput
impl UnwindSafe for FlushFilterOutput
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