pub enum Next {
Continue,
Break,
}Expand description
Control flag to indicate whether processing should continue or break.
Returning Break from an Inspector/Collector will let that instance stop visiting any
more data.
Variants§
Continue
Interested in receiving additional data.
Break
Not interested in receiving additional data. Will let the inspector/collector stop.
Trait Implementations§
impl Copy for Next
impl Eq for Next
impl StructuralPartialEq for Next
Auto Trait Implementations§
impl Freeze for Next
impl RefUnwindSafe for Next
impl Send for Next
impl Sync for Next
impl Unpin for Next
impl UnwindSafe for Next
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