pub struct StateStorePointer<P>(pub(crate) P);
Tuple Fields§
§0: P
Trait Implementations§
Source§impl AsHummock for StateStorePointer<Arc<dyn DynStateStore>>
impl AsHummock for StateStorePointer<Arc<dyn DynStateStore>>
fn as_hummock(&self) -> Option<&HummockStorage>
fn sync( &self, sync_table_epochs: Vec<(HummockEpoch, HashSet<TableId>)>, ) -> BoxFuture<'_, StorageResult<SyncResult>>
Source§impl AsMut<dyn DynStateStoreWriteEpochControl> for StateStorePointer<Box<dyn DynLocalStateStore>>
impl AsMut<dyn DynStateStoreWriteEpochControl> for StateStorePointer<Box<dyn DynLocalStateStore>>
Source§fn as_mut(&mut self) -> &mut dyn DynStateStoreWriteEpochControl
fn as_mut(&mut self) -> &mut dyn DynStateStoreWriteEpochControl
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<dyn DynStateStoreWriteEpochControl> for StateStorePointer<Box<dyn DynStateStoreWriteVector>>
impl AsMut<dyn DynStateStoreWriteEpochControl> for StateStorePointer<Box<dyn DynStateStoreWriteVector>>
Source§fn as_mut(&mut self) -> &mut dyn DynStateStoreWriteEpochControl
fn as_mut(&mut self) -> &mut dyn DynStateStoreWriteEpochControl
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Arc<dyn DynStateStoreRead>>
impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Arc<dyn DynStateStoreRead>>
Source§fn as_ref(&self) -> &dyn DynStateStoreGet
fn as_ref(&self) -> &dyn DynStateStoreGet
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
Source§fn as_ref(&self) -> &dyn DynStateStoreGet
fn as_ref(&self) -> &dyn DynStateStoreGet
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Box<dyn DynLocalStateStore>>
impl AsRef<dyn DynStateStoreGet> for StateStorePointer<Box<dyn DynLocalStateStore>>
Source§fn as_ref(&self) -> &dyn DynStateStoreGet
fn as_ref(&self) -> &dyn DynStateStoreGet
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreRead> for StateStorePointer<Arc<dyn DynStateStoreRead>>
impl AsRef<dyn DynStateStoreRead> for StateStorePointer<Arc<dyn DynStateStoreRead>>
Source§fn as_ref(&self) -> &dyn DynStateStoreRead
fn as_ref(&self) -> &dyn DynStateStoreRead
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreRead> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
impl AsRef<dyn DynStateStoreRead> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
Source§fn as_ref(&self) -> &dyn DynStateStoreRead
fn as_ref(&self) -> &dyn DynStateStoreRead
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<dyn DynStateStoreReadVector> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
impl AsRef<dyn DynStateStoreReadVector> for StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
Source§fn as_ref(&self) -> &dyn DynStateStoreReadVector
fn as_ref(&self) -> &dyn DynStateStoreReadVector
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl<P: Clone> Clone for StateStorePointer<P>
impl<P: Clone> Clone for StateStorePointer<P>
Source§fn clone(&self) -> StateStorePointer<P>
fn clone(&self) -> StateStorePointer<P>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl LocalStateStore for StateStorePointer<Box<dyn DynLocalStateStore>>
impl LocalStateStore for StateStorePointer<Box<dyn DynLocalStateStore>>
type FlushedSnapshotReader = StateStorePointer<Arc<dyn DynStateStoreRead>>
type Iter<'a> = Box<dyn DynStateStoreIter<(FullKey<Bytes>, Bytes)> + 'a>
type RevIter<'a> = Box<dyn DynStateStoreIter<(FullKey<Bytes>, Bytes)> + 'a>
Source§fn iter(
&self,
key_range: TableKeyRange,
read_options: ReadOptions,
) -> impl Future<Output = StorageResult<Self::Iter<'_>>> + Send + '_
fn iter( &self, key_range: TableKeyRange, read_options: ReadOptions, ) -> impl Future<Output = StorageResult<Self::Iter<'_>>> + Send + '_
Opens and returns an iterator for given
prefix_hint
and full_key_range
Internally, prefix_hint
will be used to for checking bloom_filter
and
full_key_range
used for iter. (if the prefix_hint
not None, it should be be included
in key_range
) The returned iterator will iterate data based on the latest written
snapshot.fn rev_iter( &self, key_range: TableKeyRange, read_options: ReadOptions, ) -> impl Future<Output = StorageResult<Self::RevIter<'_>>> + Send + '_
fn new_flushed_snapshot_reader(&self) -> Self::FlushedSnapshotReader
Source§fn get_table_watermark(&self, vnode: VirtualNode) -> Option<Bytes>
fn get_table_watermark(&self, vnode: VirtualNode) -> Option<Bytes>
Get last persisted watermark for a given vnode.
Source§fn insert(
&mut self,
key: TableKey<Bytes>,
new_val: Bytes,
old_val: Option<Bytes>,
) -> StorageResult<()>
fn insert( &mut self, key: TableKey<Bytes>, new_val: Bytes, old_val: Option<Bytes>, ) -> StorageResult<()>
Inserts a key-value entry associated with a given
epoch
into the state store.Source§fn delete(&mut self, key: TableKey<Bytes>, old_val: Bytes) -> StorageResult<()>
fn delete(&mut self, key: TableKey<Bytes>, old_val: Bytes) -> StorageResult<()>
Deletes a key-value entry from the state store. Only the key-value entry with epoch smaller
than the given
epoch
will be deleted.async fn update_vnode_bitmap( &mut self, vnodes: Arc<Bitmap>, ) -> StorageResult<Arc<Bitmap>>
Source§impl StateStore for StateStorePointer<Arc<dyn DynStateStore>>
impl StateStore for StateStorePointer<Arc<dyn DynStateStore>>
type Local = StateStorePointer<Box<dyn DynLocalStateStore>>
type ReadSnapshot = StateStorePointer<Arc<dyn DynStateStoreReadSnapshot>>
type VectorWriter = StateStorePointer<Box<dyn DynStateStoreWriteVector>>
Source§fn try_wait_epoch(
&self,
epoch: HummockReadEpoch,
options: TryWaitEpochOptions,
) -> impl Future<Output = StorageResult<()>> + Send + '_
fn try_wait_epoch( &self, epoch: HummockReadEpoch, options: TryWaitEpochOptions, ) -> impl Future<Output = StorageResult<()>> + Send + '_
If epoch is
Committed
, we will wait until the epoch is committed and its data is ready to
read. If epoch is Current
, we will only check if the data can be read with this epoch.fn new_local( &self, option: NewLocalOptions, ) -> impl Future<Output = Self::Local> + Send + '_
async fn new_read_snapshot( &self, epoch: HummockReadEpoch, options: NewReadSnapshotOptions, ) -> StorageResult<Self::ReadSnapshot>
fn new_vector_writer( &self, options: NewVectorWriterOptions, ) -> impl Future<Output = Self::VectorWriter> + Send + '_
Source§fn monitored(
self,
storage_metrics: Arc<MonitoredStorageMetrics>,
) -> MonitoredStateStore<Self>
fn monitored( self, storage_metrics: Arc<MonitoredStorageMetrics>, ) -> MonitoredStateStore<Self>
Creates a
MonitoredStateStore
from this state store, with given stats
.Source§impl<P> StateStoreGet for StateStorePointer<P>
impl<P> StateStoreGet for StateStorePointer<P>
async fn on_key_value<O: Send + 'static>( &self, key: TableKey<Bytes>, read_options: ReadOptions, on_key_value_fn: impl KeyValueFn<O>, ) -> StorageResult<Option<O>>
Source§impl<P> StateStoreRead for StateStorePointer<P>
impl<P> StateStoreRead for StateStorePointer<P>
type Iter = Box<dyn DynStateStoreIter<(FullKey<Bytes>, Bytes)>>
type RevIter = Box<dyn DynStateStoreIter<(FullKey<Bytes>, Bytes)>>
Source§fn iter(
&self,
key_range: TableKeyRange,
read_options: ReadOptions,
) -> impl Future<Output = StorageResult<Self::Iter>> + '_
fn iter( &self, key_range: TableKeyRange, read_options: ReadOptions, ) -> impl Future<Output = StorageResult<Self::Iter>> + '_
Opens and returns an iterator for given
prefix_hint
and full_key_range
Internally, prefix_hint
will be used to for checking bloom_filter
and
full_key_range
used for iter. (if the prefix_hint
not None, it should be be included
in key_range
) The returned iterator will iterate data based on a snapshot
corresponding to the given epoch
.fn rev_iter( &self, key_range: TableKeyRange, read_options: ReadOptions, ) -> impl Future<Output = StorageResult<Self::RevIter>> + '_
Source§impl StateStoreReadLog for StateStorePointer<Arc<dyn DynStateStore>>
impl StateStoreReadLog for StateStorePointer<Arc<dyn DynStateStore>>
type ChangeLogIter = Box<dyn DynStateStoreIter<(TableKey<Bytes>, ChangeLogValue<Bytes>)>>
async fn next_epoch( &self, epoch: u64, options: NextEpochOptions, ) -> StorageResult<u64>
fn iter_log( &self, epoch_range: (u64, u64), key_range: TableKeyRange, options: ReadLogOptions, ) -> impl Future<Output = StorageResult<Self::ChangeLogIter>> + Send + '_
Source§impl<P> StateStoreReadVector for StateStorePointer<P>
impl<P> StateStoreReadVector for StateStorePointer<P>
async fn nearest<O: Send + 'static>( &self, vec: Vector, options: VectorNearestOptions, on_nearest_item_fn: impl OnNearestItemFn<O>, ) -> StorageResult<Vec<O>>
Source§impl<P> StateStoreWriteEpochControl for StateStorePointer<P>
impl<P> StateStoreWriteEpochControl for StateStorePointer<P>
fn flush(&mut self) -> impl Future<Output = StorageResult<usize>> + Send + '_
fn try_flush(&mut self) -> impl Future<Output = StorageResult<()>> + Send + '_
Source§fn init(
&mut self,
options: InitOptions,
) -> impl Future<Output = StorageResult<()>> + Send + '_
fn init( &mut self, options: InitOptions, ) -> impl Future<Output = StorageResult<()>> + Send + '_
Initializes the state store with given
epoch
pair.
Typically we will use epoch.curr
as the initialized epoch,
Since state table will begin as empty.
In some cases like replicated state table, state table may not be empty initially,
as such we need to wait for epoch.prev
checkpoint to complete,
hence this interface is made async.Source§fn seal_current_epoch(&mut self, next_epoch: u64, opts: SealCurrentEpochOptions)
fn seal_current_epoch(&mut self, next_epoch: u64, opts: SealCurrentEpochOptions)
Updates the monotonically increasing write epoch to
new_epoch
.
All writes after this function is called will be tagged with new_epoch
. In other words,
the previous write epoch is sealed.Source§impl StateStoreWriteVector for StateStorePointer<Box<dyn DynStateStoreWriteVector>>
impl StateStoreWriteVector for StateStorePointer<Box<dyn DynStateStoreWriteVector>>
Auto Trait Implementations§
impl<P> Freeze for StateStorePointer<P>where
P: Freeze,
impl<P> RefUnwindSafe for StateStorePointer<P>where
P: RefUnwindSafe,
impl<P> Send for StateStorePointer<P>where
P: Send,
impl<P> Sync for StateStorePointer<P>where
P: Sync,
impl<P> Unpin for StateStorePointer<P>where
P: Unpin,
impl<P> UnwindSafe for StateStorePointer<P>where
P: 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,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Creates a shared type from an unshared type.
§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to [
RelabeledMetricVec::with_metric_level
].§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
Equivalent to [
RelabeledMetricVec::with_metric_level_relabel_n
].§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to [
RelabeledMetricVec::with_metric_level_relabel_n
] with metric_level
set to
MetricLevel::Debug
and relabel_num
set to 1.§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Scope for T
impl<T> Scope for T
Source§impl<S> StateStoreGetTestExt for Swhere
S: StateStoreGet,
impl<S> StateStoreGetTestExt for Swhere
S: StateStoreGet,
async fn get( &self, key: TableKey<Bytes>, read_options: StateStoreTestReadOptions, ) -> Result<Option<Bytes>, StorageError>
Source§impl<S> StateStoreReadTestExt for Swhere
S: StateStore,
impl<S> StateStoreReadTestExt for Swhere
S: StateStore,
Source§async fn get_keyed_row(
&self,
key: TableKey<Bytes>,
epoch: u64,
read_options: StateStoreTestReadOptions,
) -> Result<Option<(FullKey<Bytes>, Bytes)>, StorageError>
async fn get_keyed_row( &self, key: TableKey<Bytes>, epoch: u64, read_options: StateStoreTestReadOptions, ) -> Result<Option<(FullKey<Bytes>, Bytes)>, StorageError>
Point gets a value from the state store.
The result is based on a snapshot corresponding to the given
epoch
.
Both full key and the value are returned.Source§async fn iter(
&self,
key_range: (Bound<TableKey<Bytes>>, Bound<TableKey<Bytes>>),
epoch: u64,
read_options: StateStoreTestReadOptions,
) -> Result<<<S as StateStore>::ReadSnapshot as StateStoreRead>::Iter, StorageError>
async fn iter( &self, key_range: (Bound<TableKey<Bytes>>, Bound<TableKey<Bytes>>), epoch: u64, read_options: StateStoreTestReadOptions, ) -> Result<<<S as StateStore>::ReadSnapshot as StateStoreRead>::Iter, StorageError>
Opens and returns an iterator for given
prefix_hint
and full_key_range
Internally, prefix_hint
will be used to for checking bloom_filter
and
full_key_range
used for iter. (if the prefix_hint
not None, it should be be included
in key_range
) The returned iterator will iterate data based on a snapshot
corresponding to the given epoch
.async fn rev_iter( &self, key_range: (Bound<TableKey<Bytes>>, Bound<TableKey<Bytes>>), epoch: u64, read_options: StateStoreTestReadOptions, ) -> Result<<<S as StateStore>::ReadSnapshot as StateStoreRead>::RevIter, StorageError>
async fn scan( &self, key_range: (Bound<TableKey<Bytes>>, Bound<TableKey<Bytes>>), epoch: u64, limit: Option<usize>, read_options: StateStoreTestReadOptions, ) -> Result<Vec<(FullKey<Bytes>, Bytes)>, StorageError>
Source§fn get(
&self,
key: TableKey<Bytes>,
epoch: u64,
read_options: ReadOptions,
) -> impl StorageFuture<'_, Option<Bytes>>
fn get( &self, key: TableKey<Bytes>, epoch: u64, read_options: ReadOptions, ) -> impl StorageFuture<'_, Option<Bytes>>
Point gets a value from the state store.
The result is based on a snapshot corresponding to the given
epoch
.
Only the value is returned.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.