pub struct MonitoredStateStore<S, E = ()> {
inner: Box<S>,
storage_metrics: Arc<MonitoredStorageMetrics>,
extra: E,
}
Expand description
A state store wrapper for monitoring metrics.
Fields§
§inner: Box<S>
§storage_metrics: Arc<MonitoredStorageMetrics>
§extra: E
Implementations§
Source§impl<S> MonitoredStateStore<S>
impl<S> MonitoredStateStore<S>
Source§impl<S> MonitoredStateStore<S, TableId>
impl<S> MonitoredStateStore<S, TableId>
Source§impl<S, E> MonitoredStateStore<S, E>
impl<S, E> MonitoredStateStore<S, E>
async fn monitored_iter<'a, Item: IterItem, I: StateStoreIter<Item> + 'a, Stat: StateStoreIterStatsTrait<Item = Item>>( &'a self, table_id: TableId, iter_stream_future: impl Future<Output = StorageResult<I>> + 'a, ) -> StorageResult<MonitoredStateStoreIter<Item, I, Stat>>
async fn monitored_on_key_value<O>( &self, on_key_value_future: impl Future<Output = StorageResult<Option<(O, usize)>>>, table_id: TableId, key_len: usize, ) -> StorageResult<Option<O>>
Source§impl MonitoredStateStore<HummockStorage>
impl MonitoredStateStore<HummockStorage>
pub fn sstable_store(&self) -> SstableStoreRef
pub fn object_id_manager(&self) -> ObjectIdManagerRef
Trait Implementations§
Source§impl<S: AsHummock> AsHummock for MonitoredStateStore<S>
impl<S: AsHummock> AsHummock for MonitoredStateStore<S>
fn as_hummock(&self) -> Option<&HummockStorage>
fn sync( &self, sync_table_epochs: Vec<(HummockEpoch, HashSet<TableId>)>, ) -> BoxFuture<'_, StorageResult<SyncResult>>
Source§impl<S: Clone, E: Clone> Clone for MonitoredStateStore<S, E>
impl<S: Clone, E: Clone> Clone for MonitoredStateStore<S, E>
Source§fn clone(&self) -> MonitoredStateStore<S, E>
fn clone(&self) -> MonitoredStateStore<S, E>
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<S: LocalStateStore> LocalStateStore for MonitoredStateStore<S, TableId>
impl<S: LocalStateStore> LocalStateStore for MonitoredStateStore<S, TableId>
type FlushedSnapshotReader = MonitoredStateStore<<S as LocalStateStore>::FlushedSnapshotReader, TableId>
type Iter<'a> = impl StateStoreIter + 'a
type RevIter<'a> = impl StateStoreIter + '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 + '_
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.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.
fn new_flushed_snapshot_reader(&self) -> Self::FlushedSnapshotReader
async fn update_vnode_bitmap( &mut self, vnodes: Arc<Bitmap>, ) -> StorageResult<Arc<Bitmap>>
Source§impl<S: StateStore> StateStore for MonitoredStateStore<S>
impl<S: StateStore> StateStore for MonitoredStateStore<S>
type Local = MonitoredStateStore<<S as StateStore>::Local, TableId>
type ReadSnapshot = MonitoredStateStore<<S as StateStore>::ReadSnapshot, TableId>
type VectorWriter = MonitoredStateStore<<S as StateStore>::VectorWriter, TableId>
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.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
.async fn new_local(&self, option: NewLocalOptions) -> Self::Local
async fn new_read_snapshot( &self, epoch: HummockReadEpoch, options: NewReadSnapshotOptions, ) -> StorageResult<Self::ReadSnapshot>
async fn new_vector_writer( &self, options: NewVectorWriterOptions, ) -> Self::VectorWriter
Source§impl<S: StateStoreGet> StateStoreGet for MonitoredStateStore<S, TableId>
impl<S: StateStoreGet> StateStoreGet for MonitoredStateStore<S, TableId>
fn on_key_value<O: Send + 'static>( &self, key: TableKey<Bytes>, read_options: ReadOptions, on_key_value_fn: impl KeyValueFn<O>, ) -> impl StorageFuture<'_, Option<O>>
Source§impl<S: StateStoreRead> StateStoreRead for MonitoredStateStore<S, TableId>
impl<S: StateStoreRead> StateStoreRead for MonitoredStateStore<S, TableId>
type Iter = impl StateStoreReadIter
type RevIter = impl StateStoreReadIter
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<S: StateStoreReadLog> StateStoreReadLog for MonitoredStateStore<S>
impl<S: StateStoreReadLog> StateStoreReadLog for MonitoredStateStore<S>
type ChangeLogIter = impl StateStoreReadChangeLogIter
fn next_epoch( &self, epoch: u64, options: NextEpochOptions, ) -> impl StorageFuture<'_, u64>
fn iter_log( &self, epoch_range: (u64, u64), key_range: TableKeyRange, options: ReadLogOptions, ) -> impl Future<Output = StorageResult<Self::ChangeLogIter>> + Send + '_
Source§impl<S: StateStoreReadVector> StateStoreReadVector for MonitoredStateStore<S, TableId>
impl<S: StateStoreReadVector> StateStoreReadVector for MonitoredStateStore<S, TableId>
fn nearest<O: Send + 'static>( &self, vec: Vector, options: VectorNearestOptions, on_nearest_item_fn: impl OnNearestItemFn<O>, ) -> impl StorageFuture<'_, Vec<O>>
Source§impl<S: StateStoreWriteEpochControl> StateStoreWriteEpochControl for MonitoredStateStore<S, TableId>
impl<S: StateStoreWriteEpochControl> StateStoreWriteEpochControl for MonitoredStateStore<S, TableId>
fn flush(&mut self) -> impl Future<Output = StorageResult<usize>> + Send + '_
Source§async fn init(&mut self, options: InitOptions) -> StorageResult<()>
async fn init(&mut self, options: InitOptions) -> StorageResult<()>
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.fn try_flush(&mut self) -> impl Future<Output = StorageResult<()>> + Send + '_
Source§impl<S: StateStoreWriteVector> StateStoreWriteVector for MonitoredStateStore<S, TableId>
impl<S: StateStoreWriteVector> StateStoreWriteVector for MonitoredStateStore<S, TableId>
Auto Trait Implementations§
impl<S, E> Freeze for MonitoredStateStore<S, E>where
E: Freeze,
impl<S, E = ()> !RefUnwindSafe for MonitoredStateStore<S, E>
impl<S, E> Send for MonitoredStateStore<S, E>
impl<S, E> Sync for MonitoredStateStore<S, E>
impl<S, E> Unpin for MonitoredStateStore<S, E>where
E: Unpin,
impl<S, E = ()> !UnwindSafe for MonitoredStateStore<S, E>
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.