pub struct RunVisibleVersion {
pub row_id: RowId,
pub committed_epoch: Epoch,
pub deleted: bool,
pub commit_ts: Option<HlcTimestamp>,
/* private fields */
}Fields§
§row_id: RowId§committed_epoch: Epoch§deleted: bool§commit_ts: Option<HlcTimestamp>Optional HLC from SYS_COMMIT_TS when the run carries that column. Used by controlled merge for HLC-authoritative cross-tier winners without forcing full materialization first.
Trait Implementations§
Source§impl Clone for RunVisibleVersion
impl Clone for RunVisibleVersion
Source§fn clone(&self) -> RunVisibleVersion
fn clone(&self) -> RunVisibleVersion
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 RunVisibleVersion
Auto Trait Implementations§
impl Freeze for RunVisibleVersion
impl RefUnwindSafe for RunVisibleVersion
impl Send for RunVisibleVersion
impl Sync for RunVisibleVersion
impl Unpin for RunVisibleVersion
impl UnsafeUnpin for RunVisibleVersion
impl UnwindSafe for RunVisibleVersion
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more