pub enum FilterResult {
Continue,
Wait,
Error,
}
Expand description
A code that filter callback functions may return.
Variants§
Continue
A filtering step is finished for filter.
Wait
A filtering step must be paused, waiting for more data or for an external event depending on filter.
Error
Trigger a error
Auto Trait Implementations§
impl Freeze for FilterResult
impl RefUnwindSafe for FilterResult
impl Send for FilterResult
impl Sync for FilterResult
impl Unpin for FilterResult
impl UnwindSafe for FilterResult
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