pub enum CursorProgressFact {
Pending,
Consumed,
}Expand description
Durable cursor-progress fact state.
Variants§
Pending
Boundary remains independently fireable for this participant.
Consumed
Boundary was covered by this participant’s committed cumulative ack.
Trait Implementations§
Source§impl Clone for CursorProgressFact
impl Clone for CursorProgressFact
Source§fn clone(&self) -> CursorProgressFact
fn clone(&self) -> CursorProgressFact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CursorProgressFact
Source§impl Debug for CursorProgressFact
impl Debug for CursorProgressFact
impl Eq for CursorProgressFact
Source§impl PartialEq for CursorProgressFact
impl PartialEq for CursorProgressFact
impl StructuralPartialEq for CursorProgressFact
Auto Trait Implementations§
impl Freeze for CursorProgressFact
impl RefUnwindSafe for CursorProgressFact
impl Send for CursorProgressFact
impl Sync for CursorProgressFact
impl Unpin for CursorProgressFact
impl UnsafeUnpin for CursorProgressFact
impl UnwindSafe for CursorProgressFact
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