pub enum OpenProgress {
NotBegun,
Parked(StreamedOpen),
Chewing {
dispatched: Range<usize>,
},
}Expand description
An incoming row’s streamed-open slot across the offload round trip: the state parks here between chews, and leaves a span marker behind while a pool worker holds it — the verdict’s identity check against a row that died or was replaced mid-chew.
Variants§
Trait Implementations§
Source§impl Debug for OpenProgress
impl Debug for OpenProgress
Source§impl Default for OpenProgress
impl Default for OpenProgress
Source§fn default() -> OpenProgress
fn default() -> OpenProgress
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenProgress
impl RefUnwindSafe for OpenProgress
impl Send for OpenProgress
impl Sync for OpenProgress
impl Unpin for OpenProgress
impl UnsafeUnpin for OpenProgress
impl UnwindSafe for OpenProgress
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