pub struct VersionChain<V: Clone> { /* private fields */ }Expand description
Version chain for a key (head is newest)
Implementations§
Source§impl<V: Clone> VersionChain<V>
impl<V: Clone> VersionChain<V>
Sourcepub fn with_value(value: V, txn_id: TxnId, timestamp: Timestamp) -> Self
pub fn with_value(value: V, txn_id: TxnId, timestamp: Timestamp) -> Self
Create chain with initial version
Sourcepub fn insert(&mut self, value: V, txn_id: TxnId, timestamp: Timestamp)
pub fn insert(&mut self, value: V, txn_id: TxnId, timestamp: Timestamp)
Insert new version at head
Sourcepub fn update(&mut self, value: V, txn_id: TxnId, timestamp: Timestamp)
pub fn update(&mut self, value: V, txn_id: TxnId, timestamp: Timestamp)
Update with new version (creates new version, points to old)
Sourcepub fn delete(&mut self, txn_id: TxnId, timestamp: Timestamp)
pub fn delete(&mut self, txn_id: TxnId, timestamp: Timestamp)
Delete (creates tombstone version)
Sourcepub fn gc(&mut self, watermark: Timestamp) -> usize
pub fn gc(&mut self, watermark: Timestamp) -> usize
Garbage collect versions older than watermark
Sourcepub fn is_all_deleted(&self) -> bool
pub fn is_all_deleted(&self) -> bool
Check if all versions are tombstones (for compaction)
Sourcepub fn oldest_timestamp(&self) -> Timestamp
pub fn oldest_timestamp(&self) -> Timestamp
Get oldest timestamp in chain
Trait Implementations§
Source§impl<V: Clone + Clone> Clone for VersionChain<V>
impl<V: Clone + Clone> Clone for VersionChain<V>
Source§fn clone(&self) -> VersionChain<V>
fn clone(&self) -> VersionChain<V>
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 moreAuto Trait Implementations§
impl<V> Freeze for VersionChain<V>
impl<V> RefUnwindSafe for VersionChain<V>where
V: RefUnwindSafe,
impl<V> Send for VersionChain<V>where
V: Send,
impl<V> Sync for VersionChain<V>where
V: Sync,
impl<V> Unpin for VersionChain<V>
impl<V> UnsafeUnpin for VersionChain<V>
impl<V> UnwindSafe for VersionChain<V>where
V: UnwindSafe,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request