pub enum Framing {
Advisory,
Historical,
Projected,
Authoritative {
set_by: FramingSource,
},
}Expand description
Framing classification per read-protocol.md § 5. Attached
per-record in ReadResult::framings when :show_framing true.
Variants§
Advisory
Normal current-state record.
Historical
Returned because :as_of predates query_committed_at.
Projected
Record has flags.projected — an intent / plan, not current
truth. Only reachable when :include_projected true.
Authoritative
Record is pinned or operator-authoritative — decay suspended,
high trust. See confidence-decay.md §§ 7 / 8.
Fields
§
set_by: FramingSourceWhich flag source authorised the pin.
Trait Implementations§
impl Copy for Framing
impl Eq for Framing
impl StructuralPartialEq for Framing
Auto Trait Implementations§
impl Freeze for Framing
impl RefUnwindSafe for Framing
impl Send for Framing
impl Sync for Framing
impl Unpin for Framing
impl UnsafeUnpin for Framing
impl UnwindSafe for Framing
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.