pub enum Consistency {
Projected,
RequireProjectedThrough(u64),
}Expand description
Projection consistency requested by a caller.
Variants§
Projected
Read the currently published projection.
RequireProjectedThrough(u64)
Refuse unless the projection covers at least this journal position.
The position names no partition or source. A result may pin several independent sources, so this scalar has no single referent across them. The gate that recognizes this posture refuses it before any artifact read; a later chunk owns both the target vector and its wait semantics.
Trait Implementations§
Source§impl Clone for Consistency
impl Clone for Consistency
Source§fn clone(&self) -> Consistency
fn clone(&self) -> Consistency
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 Consistency
Source§impl Debug for Consistency
impl Debug for Consistency
impl Eq for Consistency
Source§impl PartialEq for Consistency
impl PartialEq for Consistency
impl StructuralPartialEq for Consistency
Auto Trait Implementations§
impl Freeze for Consistency
impl RefUnwindSafe for Consistency
impl Send for Consistency
impl Sync for Consistency
impl Unpin for Consistency
impl UnsafeUnpin for Consistency
impl UnwindSafe for Consistency
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