#[non_exhaustive]pub struct NoopTransactionPool;
Expand description
A TransactionPool
implementation that does nothing.
All transactions are rejected and no events are emitted. This type will never hold any transactions and is only useful for wiring components together.
Trait Implementations§
Source§impl Clone for NoopTransactionPool
impl Clone for NoopTransactionPool
Source§fn clone(&self) -> NoopTransactionPool
fn clone(&self) -> NoopTransactionPool
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 Debug for NoopTransactionPool
impl Debug for NoopTransactionPool
Source§impl Default for NoopTransactionPool
impl Default for NoopTransactionPool
Source§fn default() -> NoopTransactionPool
fn default() -> NoopTransactionPool
Returns the “default value” for a type. Read more
Source§impl TransactionPool for NoopTransactionPool
impl TransactionPool for NoopTransactionPool
Source§type Transaction = EthPooledTransaction
type Transaction = EthPooledTransaction
The transaction type of the pool
Source§fn block_info(&self) -> BlockInfo
fn block_info(&self) -> BlockInfo
Returns the block the pool is currently tracking. Read more
Source§async fn add_transaction_and_subscribe(
&self,
_origin: TransactionOrigin,
transaction: Self::Transaction,
) -> PoolResult<TransactionEvents>
async fn add_transaction_and_subscribe( &self, _origin: TransactionOrigin, transaction: Self::Transaction, ) -> PoolResult<TransactionEvents>
Adds an unvalidated transaction into the pool and subscribe to state changes. Read more
Source§async fn add_transaction(
&self,
_origin: TransactionOrigin,
transaction: Self::Transaction,
) -> PoolResult<TxHash>
async fn add_transaction( &self, _origin: TransactionOrigin, transaction: Self::Transaction, ) -> PoolResult<TxHash>
Adds an unvalidated transaction into the pool. Read more
Source§async fn add_transactions(
&self,
_origin: TransactionOrigin,
transactions: Vec<Self::Transaction>,
) -> Vec<PoolResult<TxHash>>
async fn add_transactions( &self, _origin: TransactionOrigin, transactions: Vec<Self::Transaction>, ) -> Vec<PoolResult<TxHash>>
Adds the given unvalidated transaction into the pool. Read more
Source§fn transaction_event_listener(
&self,
_tx_hash: TxHash,
) -> Option<TransactionEvents>
fn transaction_event_listener( &self, _tx_hash: TxHash, ) -> Option<TransactionEvents>
Returns a new transaction change event stream for the given transaction. Read more
Source§fn all_transactions_event_listener(
&self,
) -> AllTransactionsEvents<Self::Transaction>
fn all_transactions_event_listener( &self, ) -> AllTransactionsEvents<Self::Transaction>
Returns a new transaction change event stream for all transactions in the pool.
Source§fn pending_transactions_listener_for(
&self,
_kind: TransactionListenerKind,
) -> Receiver<TxHash>
fn pending_transactions_listener_for( &self, _kind: TransactionListenerKind, ) -> Receiver<TxHash>
Returns a new [Receiver] that yields transactions hashes for new pending transactions
inserted into the pending pool depending on the given TransactionListenerKind argument.
Source§fn new_transactions_listener(
&self,
) -> Receiver<NewTransactionEvent<Self::Transaction>>
fn new_transactions_listener( &self, ) -> Receiver<NewTransactionEvent<Self::Transaction>>
Returns a new stream that yields new valid transactions added to the pool.
Source§fn blob_transaction_sidecars_listener(&self) -> Receiver<NewBlobSidecar>
fn blob_transaction_sidecars_listener(&self) -> Receiver<NewBlobSidecar>
Returns a new [Receiver] that yields blob “sidecars” (blobs w/ assoc. kzg
commitments/proofs) for eip-4844 transactions inserted into the pool
Source§fn new_transactions_listener_for(
&self,
_kind: TransactionListenerKind,
) -> Receiver<NewTransactionEvent<Self::Transaction>>
fn new_transactions_listener_for( &self, _kind: TransactionListenerKind, ) -> Receiver<NewTransactionEvent<Self::Transaction>>
Returns a new stream that yields new valid transactions added to the pool
depending on the given TransactionListenerKind argument.
Source§fn pooled_transaction_hashes(&self) -> Vec<TxHash>
fn pooled_transaction_hashes(&self) -> Vec<TxHash>
Returns the hashes of all transactions in the pool. Read more
Source§fn pooled_transaction_hashes_max(&self, _max: usize) -> Vec<TxHash>
fn pooled_transaction_hashes_max(&self, _max: usize) -> Vec<TxHash>
Returns only the first
max
hashes of transactions in the pool. Read moreSource§fn pooled_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn pooled_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns the full transaction objects all transactions in the pool. Read more
Source§fn pooled_transactions_max(
&self,
_max: usize,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn pooled_transactions_max( &self, _max: usize, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns only the first
max
transactions in the pool. Read moreSource§fn get_pooled_transaction_elements(
&self,
_tx_hashes: Vec<TxHash>,
_limit: GetPooledTransactionLimit,
) -> Vec<PooledTransactionsElement>
fn get_pooled_transaction_elements( &self, _tx_hashes: Vec<TxHash>, _limit: GetPooledTransactionLimit, ) -> Vec<PooledTransactionsElement>
Returns converted PooledTransactionsElement for the given transaction hashes. Read more
Source§fn get_pooled_transaction_element(
&self,
_tx_hash: TxHash,
) -> Option<PooledTransactionsElement>
fn get_pooled_transaction_element( &self, _tx_hash: TxHash, ) -> Option<PooledTransactionsElement>
Returns converted PooledTransactionsElement for the given transaction hash. Read more
Source§fn best_transactions(
&self,
) -> Box<dyn BestTransactions<Item = Arc<ValidPoolTransaction<Self::Transaction>>>>
fn best_transactions( &self, ) -> Box<dyn BestTransactions<Item = Arc<ValidPoolTransaction<Self::Transaction>>>>
Returns an iterator that yields transactions that are ready for block production. Read more
Source§fn best_transactions_with_attributes(
&self,
_: BestTransactionsAttributes,
) -> Box<dyn BestTransactions<Item = Arc<ValidPoolTransaction<Self::Transaction>>>>
fn best_transactions_with_attributes( &self, _: BestTransactionsAttributes, ) -> Box<dyn BestTransactions<Item = Arc<ValidPoolTransaction<Self::Transaction>>>>
Returns an iterator that yields transactions that are ready for block production with the
given base fee and optional blob fee attributes. Read more
Source§fn pending_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn pending_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that can be included in the next block. Read more
Source§fn queued_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn queued_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that can be included in future blocks. Read more
Source§fn all_transactions(&self) -> AllPoolTransactions<Self::Transaction>
fn all_transactions(&self) -> AllPoolTransactions<Self::Transaction>
Returns all transactions that are currently in the pool grouped by whether they are ready
for inclusion in the next block or not. Read more
Source§fn remove_transactions(
&self,
_hashes: Vec<TxHash>,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn remove_transactions( &self, _hashes: Vec<TxHash>, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Removes all transactions corresponding to the given hashes. Read more
Source§fn remove_transactions_and_descendants(
&self,
_hashes: Vec<TxHash>,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn remove_transactions_and_descendants( &self, _hashes: Vec<TxHash>, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Removes all transactions corresponding to the given hashes. Read more
Source§fn remove_transactions_by_sender(
&self,
_sender: Address,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn remove_transactions_by_sender( &self, _sender: Address, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Removes all transactions from the given sender Read more
Source§fn retain_unknown<A>(&self, _announcement: &mut A)where
A: HandleMempoolData,
fn retain_unknown<A>(&self, _announcement: &mut A)where
A: HandleMempoolData,
Retains only those hashes that are unknown to the pool.
In other words, removes all transactions from the given set that are currently present in
the pool. Returns hashes already known to the pool. Read more
Source§fn get(
&self,
_tx_hash: &TxHash,
) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get( &self, _tx_hash: &TxHash, ) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns the transaction for the given hash.
Source§fn get_all(
&self,
_txs: Vec<TxHash>,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_all( &self, _txs: Vec<TxHash>, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions objects for the given hashes. Read more
Source§fn on_propagated(&self, _txs: PropagatedTransactions)
fn on_propagated(&self, _txs: PropagatedTransactions)
Notify the pool about transactions that are propagated to peers. Read more
Source§fn get_transactions_by_sender(
&self,
_sender: Address,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_transactions_by_sender( &self, _sender: Address, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions sent by a given user
Source§fn get_pending_transactions_with_predicate(
&self,
_predicate: impl FnMut(&ValidPoolTransaction<Self::Transaction>) -> bool,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_pending_transactions_with_predicate( &self, _predicate: impl FnMut(&ValidPoolTransaction<Self::Transaction>) -> bool, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions filtered by predicate
Source§fn get_pending_transactions_by_sender(
&self,
_sender: Address,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_pending_transactions_by_sender( &self, _sender: Address, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions sent by a given user
Source§fn get_queued_transactions_by_sender(
&self,
_sender: Address,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_queued_transactions_by_sender( &self, _sender: Address, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all queued transactions sent by a given user
Source§fn get_highest_transaction_by_sender(
&self,
_sender: Address,
) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_highest_transaction_by_sender( &self, _sender: Address, ) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns the highest transaction sent by a given user
Source§fn get_highest_consecutive_transaction_by_sender(
&self,
_sender: Address,
_on_chain_nonce: u64,
) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_highest_consecutive_transaction_by_sender( &self, _sender: Address, _on_chain_nonce: u64, ) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns the transaction with the highest nonce that is executable given the on chain nonce.
In other words the highest non nonce gapped transaction. Read more
Source§fn get_transaction_by_sender_and_nonce(
&self,
_sender: Address,
_nonce: u64,
) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_transaction_by_sender_and_nonce( &self, _sender: Address, _nonce: u64, ) -> Option<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns a transaction sent by a given user and a nonce
Source§fn get_transactions_by_origin(
&self,
_origin: TransactionOrigin,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_transactions_by_origin( &self, _origin: TransactionOrigin, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that where submitted with the given TransactionOrigin
Source§fn get_pending_transactions_by_origin(
&self,
_origin: TransactionOrigin,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_pending_transactions_by_origin( &self, _origin: TransactionOrigin, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions filtered by
TransactionOrigin
Source§fn unique_senders(&self) -> HashSet<Address>
fn unique_senders(&self) -> HashSet<Address>
Returns a set of all senders of transactions in the pool
Source§fn get_blob(
&self,
_tx_hash: TxHash,
) -> Result<Option<Arc<BlobTransactionSidecar>>, BlobStoreError>
fn get_blob( &self, _tx_hash: TxHash, ) -> Result<Option<Arc<BlobTransactionSidecar>>, BlobStoreError>
Returns the [BlobTransactionSidecar] for the given transaction hash if it exists in the blob
store.
Source§fn get_all_blobs(
&self,
_tx_hashes: Vec<TxHash>,
) -> Result<Vec<(TxHash, Arc<BlobTransactionSidecar>)>, BlobStoreError>
fn get_all_blobs( &self, _tx_hashes: Vec<TxHash>, ) -> Result<Vec<(TxHash, Arc<BlobTransactionSidecar>)>, BlobStoreError>
Returns all [BlobTransactionSidecar] for the given transaction hashes if they exists in the
blob store. Read more
Source§fn get_all_blobs_exact(
&self,
tx_hashes: Vec<TxHash>,
) -> Result<Vec<Arc<BlobTransactionSidecar>>, BlobStoreError>
fn get_all_blobs_exact( &self, tx_hashes: Vec<TxHash>, ) -> Result<Vec<Arc<BlobTransactionSidecar>>, BlobStoreError>
Returns the exact [BlobTransactionSidecar] for the given transaction hashes in the order
they were requested. Read more
Source§fn get_blobs_for_versioned_hashes(
&self,
versioned_hashes: &[B256],
) -> Result<Vec<Option<BlobAndProofV1>>, BlobStoreError>
fn get_blobs_for_versioned_hashes( &self, versioned_hashes: &[B256], ) -> Result<Vec<Option<BlobAndProofV1>>, BlobStoreError>
Return the [
BlobTransactionSidecar
]s for a list of blob versioned hashes.Source§fn add_external_transaction(
&self,
transaction: Self::Transaction,
) -> impl Future<Output = PoolResult<TxHash>> + Send
fn add_external_transaction( &self, transaction: Self::Transaction, ) -> impl Future<Output = PoolResult<TxHash>> + Send
Imports an external transaction. Read more
Source§fn add_external_transactions(
&self,
transactions: Vec<Self::Transaction>,
) -> impl Future<Output = Vec<PoolResult<TxHash>>> + Send
fn add_external_transactions( &self, transactions: Vec<Self::Transaction>, ) -> impl Future<Output = Vec<PoolResult<TxHash>>> + Send
Imports all external transactions Read more
Source§fn pending_transactions_listener(&self) -> Receiver<TxHash>
fn pending_transactions_listener(&self) -> Receiver<TxHash>
Returns a new Stream that yields transactions hashes for new pending transactions
inserted into the pool that are allowed to be propagated. Read more
Source§fn new_pending_pool_transactions_listener(
&self,
) -> NewSubpoolTransactionStream<Self::Transaction>
fn new_pending_pool_transactions_listener( &self, ) -> NewSubpoolTransactionStream<Self::Transaction>
Returns a new Stream that yields new transactions added to the pending sub-pool. Read more
Source§fn new_basefee_pool_transactions_listener(
&self,
) -> NewSubpoolTransactionStream<Self::Transaction>
fn new_basefee_pool_transactions_listener( &self, ) -> NewSubpoolTransactionStream<Self::Transaction>
Returns a new Stream that yields new transactions added to the basefee sub-pool. Read more
Source§fn new_queued_transactions_listener(
&self,
) -> NewSubpoolTransactionStream<Self::Transaction>
fn new_queued_transactions_listener( &self, ) -> NewSubpoolTransactionStream<Self::Transaction>
Returns a new Stream that yields new transactions added to the queued-pool. Read more
Source§fn contains(&self, tx_hash: &TxHash) -> bool
fn contains(&self, tx_hash: &TxHash) -> bool
Returns if the transaction for the given hash is already included in this pool.
Source§fn get_local_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_local_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that where submitted as TransactionOrigin::Local
Source§fn get_private_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_private_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that where submitted as TransactionOrigin::Private
Source§fn get_external_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_external_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all transactions that where submitted as TransactionOrigin::External
Source§fn get_local_pending_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_local_pending_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions that where submitted as TransactionOrigin::Local
Source§fn get_private_pending_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_private_pending_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions that where submitted as TransactionOrigin::Private
Source§fn get_external_pending_transactions(
&self,
) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
fn get_external_pending_transactions( &self, ) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>>
Returns all pending transactions that where submitted as TransactionOrigin::External
Auto Trait Implementations§
impl Freeze for NoopTransactionPool
impl RefUnwindSafe for NoopTransactionPool
impl Send for NoopTransactionPool
impl Sync for NoopTransactionPool
impl Unpin for NoopTransactionPool
impl UnwindSafe for NoopTransactionPool
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> 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> 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 more§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> 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.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeDebug for Twhere
T: Debug,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 0 bytes