pub enum GapPolicy {
EmitPartial,
DropAndLog,
}Expand description
What to do when a stream resequencer gap timer fires.
Variants§
EmitPartial
Emit the contiguous run from next_expected and advance past the gap.
DropAndLog
Drop all held exchanges with a warning log (no dead-letter sink wired).
Trait Implementations§
impl Copy for GapPolicy
impl Eq for GapPolicy
impl StructuralPartialEq for GapPolicy
Auto Trait Implementations§
impl Freeze for GapPolicy
impl RefUnwindSafe for GapPolicy
impl Send for GapPolicy
impl Sync for GapPolicy
impl Unpin for GapPolicy
impl UnsafeUnpin for GapPolicy
impl UnwindSafe for GapPolicy
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