pub struct InMemoryNode { /* private fields */ }
Expand description
In-memory node, that can be used for local & unit testing. It also supports the option of forking testnet/mainnet. All contents are removed when object is destroyed.
Implementations§
Source§impl InMemoryNode
impl InMemoryNode
pub async fn trace_block_impl( &self, block_id: BlockId, options: Option<TracerConfig>, ) -> Result<CallTracerBlockResult>
pub async fn trace_call_impl( &self, request: CallRequest, block: Option<BlockId>, options: Option<TracerConfig>, ) -> Result<CallTracerResult, Web3Error>
pub async fn trace_transaction_impl( &self, tx_hash: H256, options: Option<TracerConfig>, ) -> Result<Option<CallTracerResult>>
Source§impl InMemoryNode
impl InMemoryNode
pub async fn call_impl(&self, req: CallRequest) -> Result<Bytes, Web3Error>
pub async fn send_raw_transaction_impl( &self, tx_bytes: Bytes, ) -> Result<H256, Web3Error>
pub async fn send_transaction_impl( &self, tx: CallRequest, ) -> Result<H256, Web3Error>
Source§impl InMemoryNode
impl InMemoryNode
pub async fn get_balance_impl( &self, address: Address, _block: Option<BlockIdVariant>, ) -> Result<U256>
pub async fn get_block_impl( &self, block_id: BlockId, full_transactions: bool, ) -> Result<Option<Block<TransactionVariant>>>
pub async fn get_code_impl( &self, address: Address, _block: Option<BlockIdVariant>, ) -> Result<Bytes>
pub async fn get_transaction_count_impl( &self, address: Address, _block: Option<BlockIdVariant>, ) -> Result<U256>
pub async fn get_transaction_receipt_impl( &self, hash: H256, ) -> Result<Option<TransactionReceipt>>
pub async fn get_transaction_by_hash_impl( &self, hash: H256, ) -> Result<Option<Transaction>>
pub async fn get_block_number_impl(&self) -> Result<U64>
pub async fn estimate_gas_impl( &self, req: CallRequest, _block: Option<BlockNumber>, ) -> Result<U256, Web3Error>
pub async fn gas_price_impl(&self) -> Result<U256>
pub async fn new_filter_impl(&self, filter: Filter) -> Result<U256>
pub async fn new_block_filter_impl(&self) -> Result<U256>
pub async fn new_pending_transaction_filter_impl(&self) -> Result<U256>
pub async fn uninstall_filter_impl(&self, id: U256) -> Result<bool>
pub async fn get_logs_impl(&self, filter: Filter) -> Result<Vec<Log>>
pub async fn get_filter_logs_impl(&self, id: U256) -> Result<FilterChanges>
pub async fn get_filter_changes_impl(&self, id: U256) -> Result<FilterChanges>
pub async fn get_block_transaction_count_impl( &self, block_id: BlockId, ) -> Result<Option<U256>, Web3Error>
pub async fn get_storage_impl( &self, address: Address, idx: U256, block: Option<BlockIdVariant>, ) -> Result<H256, Web3Error>
pub async fn get_transaction_by_block_and_index_impl( &self, block_id: BlockId, index: Index, ) -> Result<Option<Transaction>>
pub fn protocol_version_impl(&self) -> String
pub fn syncing_impl(&self) -> SyncState
pub async fn accounts_impl(&self) -> Result<Vec<H160>>
pub async fn fee_history_impl( &self, block_count: u64, _newest_block: BlockNumber, reward_percentiles: Option<Vec<f32>>, ) -> Result<FeeHistory>
Source§impl InMemoryNode
impl InMemoryNode
pub fn new( inner: Arc<RwLock<InMemoryNodeInner>>, blockchain: Box<dyn ReadBlockchain>, storage: Box<dyn ReadStorageDyn>, fork: Box<dyn ForkSource>, node_handle: NodeExecutorHandle, observability: Option<Observability>, time: Box<dyn ReadTime>, impersonation: ImpersonationManager, pool: TxPool, sealer_state: BlockSealerState, system_contracts: SystemContracts, storage_key_layout: StorageKeyLayout, ) -> Self
Sourcepub async fn replay_txs(&self, txs: Vec<Transaction>) -> Result<()>
pub async fn replay_txs(&self, txs: Vec<Transaction>) -> Result<()>
Replays transactions consequently in a new block. All transactions are expected to be executable and will become a part of the resulting block.
Sourcepub async fn set_rich_account(&self, address: H160, balance: U256)
pub async fn set_rich_account(&self, address: H160, balance: U256)
Adds a lot of tokens to a given account with a specified balance.
Sourcepub async fn run_l2_call(
&self,
l2_tx: L2Tx,
base_contracts: BaseSystemContracts,
) -> Result<ExecutionResult>
pub async fn run_l2_call( &self, l2_tx: L2Tx, base_contracts: BaseSystemContracts, ) -> Result<ExecutionResult>
Runs L2 ‘eth call’ method - that doesn’t commit to a block.
pub async fn override_bytecode( &self, address: Address, bytecode: Vec<u8>, ) -> Result<()>
pub async fn dump_state( &self, preserve_historical_states: bool, ) -> Result<Bytes>
pub async fn load_state(&self, buf: Bytes) -> Result<bool, LoadStateError>
pub async fn get_chain_id(&self) -> Result<u32>
pub async fn get_show_calls(&self) -> Result<String>
pub async fn get_show_outputs(&self) -> Result<bool>
pub fn get_current_timestamp(&self) -> Result<u64>
pub async fn set_show_calls(&self, show_calls: ShowCalls) -> Result<String>
pub async fn set_show_outputs(&self, value: bool) -> Result<bool>
pub async fn set_show_storage_logs( &self, show_storage_logs: ShowStorageLogs, ) -> Result<String>
pub async fn set_show_vm_details( &self, show_vm_details: ShowVMDetails, ) -> Result<String>
pub async fn set_show_gas_details( &self, show_gas_details: ShowGasDetails, ) -> Result<String>
pub async fn set_resolve_hashes(&self, value: bool) -> Result<bool>
pub async fn set_show_node_config(&self, value: bool) -> Result<bool>
pub async fn set_show_tx_summary(&self, value: bool) -> Result<bool>
pub async fn set_show_event_logs(&self, value: bool) -> Result<bool>
pub async fn set_disable_console_log(&self, value: bool) -> Result<bool>
pub fn set_log_level(&self, level: LogLevel) -> Result<bool>
pub fn set_logging(&self, directive: String) -> Result<bool>
pub async fn chain_id(&self) -> L2ChainId
Source§impl InMemoryNode
impl InMemoryNode
pub fn test_config( fork_client_opt: Option<ForkClient>, config: TestNodeConfig, ) -> Self
pub fn test(fork_client_opt: Option<ForkClient>) -> Self
Source§impl InMemoryNode
impl InMemoryNode
Sourcepub async fn increase_time(&self, time_delta_seconds: u64) -> Result<u64>
pub async fn increase_time(&self, time_delta_seconds: u64) -> Result<u64>
Sourcepub async fn set_next_block_timestamp(&self, timestamp: u64) -> Result<()>
pub async fn set_next_block_timestamp(&self, timestamp: u64) -> Result<()>
Sourcepub async fn set_time(&self, timestamp: u64) -> Result<i128>
pub async fn set_time(&self, timestamp: u64) -> Result<i128>
Set the current timestamp for the node. Warning: This will allow you to move backwards in time, which may cause new blocks to appear to be mined before old blocks. This will result in an invalid state.
§Parameters
time
: The timestamp to set the time to
§Returns
The difference between the current_timestamp
and the new timestamp for the InMemoryNodeInner.
Sourcepub async fn mine_block(&self) -> Result<L2BlockNumber>
pub async fn mine_block(&self) -> Result<L2BlockNumber>
Force a single block to be mined.
Will mine an empty block (containing zero transactions)
§Returns
The string “0x0”.
pub async fn mine_detailed(&self) -> Result<Block<DetailedTransaction>>
Sourcepub async fn snapshot(&self) -> Result<U64>
pub async fn snapshot(&self) -> Result<U64>
Snapshot the state of the blockchain at the current block. Takes no parameters. Returns the id of the snapshot that was created. A snapshot can only be reverted once. After a successful evm_revert, the same snapshot id cannot be used again. Consider creating a new snapshot after each evm_revert if you need to revert to the same point multiple times.
§Returns
The U64
identifier for this snapshot.
Sourcepub async fn revert_snapshot(&self, snapshot_id: U64) -> Result<bool>
pub async fn revert_snapshot(&self, snapshot_id: U64) -> Result<bool>
Revert the state of the blockchain to a previous snapshot. Takes a single parameter, which is the snapshot id to revert to. This deletes the given snapshot, as well as any snapshots taken after (e.g.: reverting to id 0x1 will delete snapshots with ids 0x1, 0x2, etc.)
§Parameters
snapshot_id
: The snapshot id to revert.
§Returns
true
if a snapshot was reverted, otherwise false
.
pub async fn set_balance(&self, address: Address, balance: U256) -> Result<bool>
pub async fn set_nonce(&self, address: Address, nonce: U256) -> Result<bool>
pub async fn mine_blocks( &self, num_blocks: Option<U64>, interval: Option<U64>, ) -> Result<()>
pub fn get_automine(&self) -> Result<bool>
pub async fn reset_network( &self, reset_spec: Option<ResetRequest>, ) -> Result<bool>
pub fn auto_impersonate_account(&self, enabled: bool)
pub fn impersonate_account(&self, address: Address) -> Result<bool>
pub fn stop_impersonating_account(&self, address: Address) -> Result<bool>
pub async fn set_code(&self, address: Address, code: String) -> Result<()>
pub async fn set_storage_at( &self, address: Address, slot: U256, value: U256, ) -> Result<bool>
pub fn set_logging_enabled(&self, enable: bool) -> Result<()>
pub fn get_immediate_sealing(&self) -> Result<bool>
pub async fn set_block_timestamp_interval(&self, seconds: u64) -> Result<()>
pub async fn remove_block_timestamp_interval(&self) -> Result<bool>
pub async fn set_immediate_sealing(&self, enable: bool) -> Result<()>
pub async fn set_interval_sealing(&self, seconds: u64) -> Result<()>
pub fn drop_transaction(&self, hash: H256) -> Result<Option<H256>>
pub fn drop_all_transactions(&self) -> Result<()>
pub fn remove_pool_transactions(&self, address: Address) -> Result<()>
pub async fn set_next_block_base_fee_per_gas( &self, base_fee: U256, ) -> Result<()>
pub async fn set_rpc_url(&self, url: String) -> Result<()>
pub async fn set_chain_id(&self, id: u32) -> Result<()>
Source§impl InMemoryNode
impl InMemoryNode
pub async fn estimate_fee_impl( &self, req: CallRequest, ) -> Result<Fee, Web3Error>
pub async fn estimate_gas_l1_to_l2( &self, req: CallRequest, ) -> Result<U256, Web3Error>
pub async fn get_raw_block_transactions_impl( &self, block_number: L2BlockNumber, ) -> Result<Vec<Transaction>, Web3Error>
pub async fn get_bridge_contracts_impl( &self, ) -> Result<BridgeAddresses, Web3Error>
pub async fn get_confirmed_tokens_impl( &self, from: u32, limit: u8, ) -> Result<Vec<Token>>
pub async fn get_all_account_balances_impl( &self, address: Address, ) -> Result<HashMap<Address, U256>, Web3Error>
pub async fn get_block_details_impl( &self, block_number: L2BlockNumber, ) -> Result<Option<BlockDetails>>
pub async fn get_transaction_details_impl( &self, hash: H256, ) -> Result<Option<TransactionDetails>>
pub async fn get_bytecode_by_hash_impl( &self, hash: H256, ) -> Result<Option<Vec<u8>>>
pub async fn get_base_token_l1_address_impl(&self) -> Result<Address>
pub async fn get_l2_to_l1_log_proof_impl( &self, tx_hash: H256, index: Option<usize>, ) -> Result<Option<L2ToL1LogProof>>
Trait Implementations§
Source§impl Clone for InMemoryNode
impl Clone for InMemoryNode
Source§fn clone(&self) -> InMemoryNode
fn clone(&self) -> InMemoryNode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for InMemoryNode
impl !RefUnwindSafe for InMemoryNode
impl Send for InMemoryNode
impl Sync for InMemoryNode
impl Unpin for InMemoryNode
impl !UnwindSafe for InMemoryNode
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
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> 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> 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> 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 more§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute
] value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
[Quirk
] value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition
] value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);
§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> 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.