pub struct StorageOpts {Show 105 fields
pub parallel_compact_size_mb: u32,
pub sstable_size_mb: u32,
pub min_sstable_size_mb: u32,
pub block_size_kb: u32,
pub bloom_false_positive: f64,
pub share_buffers_sync_parallelism: u32,
pub share_buffer_compaction_worker_threads_number: u32,
pub shared_buffer_capacity_mb: usize,
pub shared_buffer_flush_ratio: f32,
pub shared_buffer_min_batch_flush_size_mb: usize,
pub data_directory: String,
pub write_conflict_detection_enabled: bool,
pub block_cache_capacity_mb: usize,
pub block_cache_shard_num: usize,
pub block_cache_eviction_config: EvictionConfig,
pub meta_cache_capacity_mb: usize,
pub meta_cache_shard_num: usize,
pub meta_cache_eviction_config: EvictionConfig,
pub prefetch_buffer_capacity_mb: usize,
pub max_cached_recent_versions_number: usize,
pub max_prefetch_block_number: usize,
pub disable_remote_compactor: bool,
pub share_buffer_upload_concurrency: usize,
pub compactor_memory_limit_mb: usize,
pub compact_iter_recreate_timeout_ms: u64,
pub sstable_id_remote_fetch_number: u32,
pub min_sst_size_for_streaming_upload: u64,
pub max_concurrent_compaction_task_number: u64,
pub max_version_pinning_duration_sec: u64,
pub compactor_iter_max_io_retry_times: usize,
pub data_file_cache_dir: String,
pub data_file_cache_capacity_mb: usize,
pub data_file_cache_file_capacity_mb: usize,
pub data_file_cache_flushers: usize,
pub data_file_cache_reclaimers: usize,
pub data_file_cache_recover_mode: RecoverMode,
pub data_file_cache_recover_concurrency: usize,
pub data_file_cache_indexer_shards: usize,
pub data_file_cache_compression: Compression,
pub data_file_cache_flush_buffer_threshold_mb: usize,
pub data_file_cache_fifo_probation_ratio: f64,
pub data_file_cache_blob_index_size_kb: usize,
pub data_file_cache_runtime_config: RuntimeOptions,
pub data_file_cache_throttle: Throttle,
pub cache_refill_data_refill_levels: Vec<u32>,
pub cache_refill_timeout_ms: u64,
pub cache_refill_concurrency: usize,
pub cache_refill_recent_filter_shards: usize,
pub cache_refill_recent_filter_layers: usize,
pub cache_refill_recent_filter_rotate_interval_ms: usize,
pub cache_refill_unit: usize,
pub cache_refill_threshold: f64,
pub cache_refill_skip_recent_filter: bool,
pub meta_file_cache_dir: String,
pub meta_file_cache_capacity_mb: usize,
pub meta_file_cache_file_capacity_mb: usize,
pub meta_file_cache_flushers: usize,
pub meta_file_cache_reclaimers: usize,
pub meta_file_cache_recover_mode: RecoverMode,
pub meta_file_cache_recover_concurrency: usize,
pub meta_file_cache_indexer_shards: usize,
pub meta_file_cache_compression: Compression,
pub meta_file_cache_flush_buffer_threshold_mb: usize,
pub meta_file_cache_fifo_probation_ratio: f64,
pub meta_file_cache_blob_index_size_kb: usize,
pub meta_file_cache_runtime_config: RuntimeOptions,
pub meta_file_cache_throttle: Throttle,
pub vector_file_block_size_kb: usize,
pub vector_block_cache_capacity_mb: usize,
pub vector_block_cache_shard_num: usize,
pub vector_block_cache_eviction_config: EvictionConfig,
pub vector_meta_cache_capacity_mb: usize,
pub vector_meta_cache_shard_num: usize,
pub vector_meta_cache_eviction_config: EvictionConfig,
pub backup_storage_url: String,
pub backup_storage_directory: String,
pub max_preload_wait_time_mill: u64,
pub compactor_max_sst_key_count: u64,
pub compactor_max_task_multiplier: f32,
pub compactor_max_sst_size: u64,
pub enable_fast_compaction: bool,
pub check_compaction_result: bool,
pub max_preload_io_retry_times: usize,
pub compactor_fast_max_compact_delete_ratio: u32,
pub compactor_fast_max_compact_task_size: u64,
pub mem_table_spill_threshold: usize,
pub compactor_concurrent_uploading_sst_count: Option<usize>,
pub compactor_max_overlap_sst_count: usize,
pub compactor_max_preload_meta_file_count: usize,
pub object_store_config: ObjectStoreConfig,
pub time_travel_version_cache_capacity: u64,
pub iceberg_compaction_enable_validate: bool,
pub iceberg_compaction_max_record_batch_rows: usize,
pub iceberg_compaction_write_parquet_max_row_group_rows: usize,
pub iceberg_compaction_min_size_per_partition_mb: u32,
pub iceberg_compaction_max_file_count_per_partition: u32,
pub iceberg_compaction_target_binpack_group_size_mb: Option<u64>,
pub iceberg_compaction_min_group_size_mb: Option<u64>,
pub iceberg_compaction_min_group_file_count: Option<usize>,
pub iceberg_compaction_task_parallelism_ratio: f32,
pub iceberg_compaction_enable_heuristic_output_parallelism: bool,
pub iceberg_compaction_max_concurrent_closes: usize,
pub iceberg_compaction_enable_dynamic_size_estimation: bool,
pub iceberg_compaction_size_estimation_smoothing_factor: f64,
pub iceberg_compaction_pending_parallelism_budget_multiplier: f32,
}Fields§
§parallel_compact_size_mb: u32The size of parallel task for one compact/flush job.
sstable_size_mb: u32Target size of the Sstable.
min_sstable_size_mb: u32Minimal target size of the Sstable to store data of different state-table in independent files as soon as possible.
block_size_kb: u32Size of each block in bytes in SST.
bloom_false_positive: f64False positive probability of bloom filter.
parallelism while syncing share buffers into L0 SST. Should NOT be 0.
Worker threads number of dedicated tokio runtime for share buffer compaction. 0 means use tokio’s default value (number of CPU core).
Maximum shared buffer size, writes attempting to exceed the capacity will stall until there is enough space.
The shared buffer will start flushing data to object when the ratio of memory usage to the shared buffer capacity exceed such ratio.
The minimum total flush size of shared buffer spill. When a shared buffer spill is trigger, the total flush size across multiple epochs should be at least higher than this size.
data_directory: StringRemote directory for storing data and metadata objects.
write_conflict_detection_enabled: boolWhether to enable write conflict detection
block_cache_capacity_mb: usizeCapacity of sstable block cache.
block_cache_shard_num: usizethe number of block-cache shard. Less shard means that more concurrent-conflict.
block_cache_eviction_config: EvictionConfigEviction config for block cache.
meta_cache_capacity_mb: usizeCapacity of sstable meta cache.
meta_cache_shard_num: usizethe number of meta-cache shard. Less shard means that more concurrent-conflict.
meta_cache_eviction_config: EvictionConfigEviction config for meta cache.
prefetch_buffer_capacity_mb: usizemax memory usage for large query.
max_cached_recent_versions_number: usize§max_prefetch_block_number: usize§disable_remote_compactor: boolNumber of tasks shared buffer can upload in parallel.
compactor_memory_limit_mb: usizeCapacity of sstable meta cache.
compact_iter_recreate_timeout_ms: u64compactor streaming iterator recreate timeout. deprecated
sstable_id_remote_fetch_number: u32Number of SST ids fetched from meta per RPC
min_sst_size_for_streaming_upload: u64Whether to enable streaming upload for sstable.
max_concurrent_compaction_task_number: u64§max_version_pinning_duration_sec: u64§compactor_iter_max_io_retry_times: usize§data_file_cache_dir: String§data_file_cache_capacity_mb: usize§data_file_cache_file_capacity_mb: usize§data_file_cache_flushers: usize§data_file_cache_reclaimers: usize§data_file_cache_recover_mode: RecoverMode§data_file_cache_recover_concurrency: usize§data_file_cache_indexer_shards: usize§data_file_cache_compression: Compression§data_file_cache_flush_buffer_threshold_mb: usize§data_file_cache_fifo_probation_ratio: f64§data_file_cache_blob_index_size_kb: usize§data_file_cache_runtime_config: RuntimeOptions§data_file_cache_throttle: Throttle§cache_refill_data_refill_levels: Vec<u32>§cache_refill_timeout_ms: u64§cache_refill_concurrency: usize§cache_refill_recent_filter_shards: usize§cache_refill_recent_filter_layers: usize§cache_refill_recent_filter_rotate_interval_ms: usize§cache_refill_unit: usize§cache_refill_threshold: f64§cache_refill_skip_recent_filter: bool§meta_file_cache_dir: String§meta_file_cache_capacity_mb: usize§meta_file_cache_file_capacity_mb: usize§meta_file_cache_flushers: usize§meta_file_cache_reclaimers: usize§meta_file_cache_recover_mode: RecoverMode§meta_file_cache_recover_concurrency: usize§meta_file_cache_indexer_shards: usize§meta_file_cache_compression: Compression§meta_file_cache_flush_buffer_threshold_mb: usize§meta_file_cache_fifo_probation_ratio: f64§meta_file_cache_blob_index_size_kb: usize§meta_file_cache_runtime_config: RuntimeOptions§meta_file_cache_throttle: Throttle§vector_file_block_size_kb: usize§vector_block_cache_capacity_mb: usize§vector_block_cache_shard_num: usize§vector_block_cache_eviction_config: EvictionConfig§vector_meta_cache_capacity_mb: usize§vector_meta_cache_shard_num: usize§vector_meta_cache_eviction_config: EvictionConfig§backup_storage_url: StringThe storage url for storing backups.
backup_storage_directory: StringThe storage directory for storing backups.
max_preload_wait_time_mill: u64max time which wait for preload. 0 represent do not do any preload.
compactor_max_sst_key_count: u64§compactor_max_task_multiplier: f32§compactor_max_sst_size: u64§enable_fast_compaction: boolenable FastCompactorRunner.
check_compaction_result: bool§max_preload_io_retry_times: usize§compactor_fast_max_compact_delete_ratio: u32§compactor_fast_max_compact_task_size: u64§mem_table_spill_threshold: usize§compactor_concurrent_uploading_sst_count: Option<usize>§compactor_max_overlap_sst_count: usize§compactor_max_preload_meta_file_count: usizeThe maximum number of meta files that can be preloaded.
object_store_config: ObjectStoreConfig§time_travel_version_cache_capacity: u64§iceberg_compaction_enable_validate: bool§iceberg_compaction_max_record_batch_rows: usize§iceberg_compaction_write_parquet_max_row_group_rows: usize§iceberg_compaction_min_size_per_partition_mb: u32§iceberg_compaction_max_file_count_per_partition: u32§iceberg_compaction_target_binpack_group_size_mb: Option<u64>§iceberg_compaction_min_group_size_mb: Option<u64>§iceberg_compaction_min_group_file_count: Option<usize>§iceberg_compaction_task_parallelism_ratio: f32The ratio of iceberg compaction max parallelism to the number of CPU cores
iceberg_compaction_enable_heuristic_output_parallelism: boolWhether to enable heuristic output parallelism in iceberg compaction.
iceberg_compaction_max_concurrent_closes: usizeMaximum number of concurrent file close operations
iceberg_compaction_enable_dynamic_size_estimation: boolWhether to enable dynamic size estimation for iceberg compaction.
iceberg_compaction_size_estimation_smoothing_factor: f64The smoothing factor for size estimation in iceberg compaction.(default: 0.3)
iceberg_compaction_pending_parallelism_budget_multiplier: f32Multiplier for pending waiting parallelism budget for iceberg compaction task queue.
Trait Implementations§
Source§impl Clone for StorageOpts
impl Clone for StorageOpts
Source§fn clone(&self) -> StorageOpts
fn clone(&self) -> StorageOpts
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for StorageOpts
impl Debug for StorageOpts
Source§impl Default for StorageOpts
impl Default for StorageOpts
Source§impl From<&StorageOpts> for SstableBuilderOptions
impl From<&StorageOpts> for SstableBuilderOptions
Source§fn from(options: &StorageOpts) -> SstableBuilderOptions
fn from(options: &StorageOpts) -> SstableBuilderOptions
Auto Trait Implementations§
impl Freeze for StorageOpts
impl RefUnwindSafe for StorageOpts
impl Send for StorageOpts
impl Sync for StorageOpts
impl Unpin for StorageOpts
impl UnwindSafe for StorageOpts
Blanket Implementations§
§impl<T> AsAny for T
impl<T> AsAny for T
§fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
dyn Any reference to the object: Read more§fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
Arc<dyn Any> reference to the object: Read more§fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
Box<dyn Any>: Read more§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
std::any::type_name, since Any does not provide it and
Any::type_id is useless as a debugging aid (its Debug is just a mess of hex digits).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
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>
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>
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)
&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)
&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,
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,
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,
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,
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,
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,
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,
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,
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,
§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>
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>
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>
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>
§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>
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>
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>
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,
§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,
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,
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
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
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
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
§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
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
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
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
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
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
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
.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
.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
.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
.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
.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
.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
.tap_deref() only in debug builds, and is erased in release
builds.