Struct ExecutionOutcome
pub struct ExecutionOutcome<T = EthereumReceipt> {
pub bundle: BundleState,
pub receipts: Vec<Vec<T>>,
pub first_block: u64,
pub requests: Vec<Requests>,
}provider only.Expand description
Represents the outcome of block execution, including post-execution changes and reverts.
The ExecutionOutcome structure aggregates the state changes over an arbitrary number of
blocks, capturing the resulting state, receipts, and requests following the execution.
Fields§
§bundle: BundleStateBundle state with reverts.
receipts: Vec<Vec<T>>The collection of receipts. Outer vector stores receipts for each block sequentially. The inner vector stores receipts ordered by transaction number.
first_block: u64First block of bundle state.
requests: Vec<Requests>The collection of EIP-7685 requests. Outer vector stores requests for each block sequentially. The inner vector stores requests ordered by transaction number.
A transaction may have zero or more requests, so the length of the inner vector is not guaranteed to be the same as the number of transactions.
Implementations§
§impl<T> ExecutionOutcome<T>
impl<T> ExecutionOutcome<T>
pub const fn new(
bundle: BundleState,
receipts: Vec<Vec<T>>,
first_block: u64,
requests: Vec<Requests>,
) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub const fn new( bundle: BundleState, receipts: Vec<Vec<T>>, first_block: u64, requests: Vec<Requests>, ) -> ExecutionOutcome<T>
evm only.Creates a new ExecutionOutcome.
This constructor initializes a new ExecutionOutcome instance with the provided
bundle state, receipts, first block number, and EIP-7685 requests.
pub fn new_init(
state_init: HashMap<Address, (Option<Account>, Option<Account>, HashMap<FixedBytes<32>, (Uint<256, 4>, Uint<256, 4>), DefaultHashBuilder>), DefaultHashBuilder>,
revert_init: HashMap<u64, HashMap<Address, (Option<Option<Account>>, Vec<StorageEntry>), DefaultHashBuilder>, DefaultHashBuilder>,
contracts_init: impl IntoIterator<Item = (FixedBytes<32>, Bytecode)>,
receipts: Vec<Vec<T>>,
first_block: u64,
requests: Vec<Requests>,
) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub fn new_init( state_init: HashMap<Address, (Option<Account>, Option<Account>, HashMap<FixedBytes<32>, (Uint<256, 4>, Uint<256, 4>), DefaultHashBuilder>), DefaultHashBuilder>, revert_init: HashMap<u64, HashMap<Address, (Option<Option<Account>>, Vec<StorageEntry>), DefaultHashBuilder>, DefaultHashBuilder>, contracts_init: impl IntoIterator<Item = (FixedBytes<32>, Bytecode)>, receipts: Vec<Vec<T>>, first_block: u64, requests: Vec<Requests>, ) -> ExecutionOutcome<T>
evm only.Creates a new ExecutionOutcome from initialization parameters.
This constructor initializes a new ExecutionOutcome instance using detailed
initialization parameters.
pub fn single(
block_number: u64,
output: BlockExecutionOutput<T>,
) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub fn single( block_number: u64, output: BlockExecutionOutput<T>, ) -> ExecutionOutcome<T>
evm only.Creates a new ExecutionOutcome from a single block execution result.
pub fn from_blocks(
first_block: u64,
bundle: BundleState,
results: Vec<BlockExecutionResult<T>>,
) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub fn from_blocks( first_block: u64, bundle: BundleState, results: Vec<BlockExecutionResult<T>>, ) -> ExecutionOutcome<T>
evm only.Creates a new ExecutionOutcome from multiple BlockExecutionResults.
pub const fn state(&self) -> &BundleState
Available on crate feature evm only.
pub const fn state(&self) -> &BundleState
evm only.Return revm bundle state.
pub const fn state_mut(&mut self) -> &mut BundleState
Available on crate feature evm only.
pub const fn state_mut(&mut self) -> &mut BundleState
evm only.Returns mutable revm bundle state.
pub const fn set_first_block(&mut self, first_block: u64)
Available on crate feature evm only.
pub const fn set_first_block(&mut self, first_block: u64)
evm only.Set first block.
pub fn accounts_iter(
&self,
) -> impl Iterator<Item = (Address, Option<&AccountInfo>)>
Available on crate feature evm only.
pub fn accounts_iter( &self, ) -> impl Iterator<Item = (Address, Option<&AccountInfo>)>
evm only.Return iterator over all accounts
pub fn bundle_accounts_iter(
&self,
) -> impl Iterator<Item = (Address, &BundleAccount)>
Available on crate feature evm only.
pub fn bundle_accounts_iter( &self, ) -> impl Iterator<Item = (Address, &BundleAccount)>
evm only.Return iterator over all BundleAccounts in the bundle
pub fn account(&self, address: &Address) -> Option<Option<Account>>
Available on crate feature evm only.
pub fn account(&self, address: &Address) -> Option<Option<Account>>
evm only.Get account if account is known.
pub fn storage(
&self,
address: &Address,
storage_key: Uint<256, 4>,
) -> Option<Uint<256, 4>>
Available on crate feature evm only.
pub fn storage( &self, address: &Address, storage_key: Uint<256, 4>, ) -> Option<Uint<256, 4>>
evm only.Get storage if value is known.
This means that depending on status we can potentially return U256::ZERO.
pub fn bytecode(&self, code_hash: &FixedBytes<32>) -> Option<Bytecode>
Available on crate feature evm only.
pub fn bytecode(&self, code_hash: &FixedBytes<32>) -> Option<Bytecode>
evm only.Return bytecode if known.
pub fn hash_state_slow<KH>(&self) -> HashedPostStatewhere
KH: KeyHasher,
Available on crate feature evm only.
pub fn hash_state_slow<KH>(&self) -> HashedPostStatewhere
KH: KeyHasher,
evm only.Returns HashedPostState for this execution outcome.
See HashedPostState::from_bundle_state for more info.
pub const fn block_number_to_index(&self, block_number: u64) -> Option<usize>
Available on crate feature evm only.
pub const fn block_number_to_index(&self, block_number: u64) -> Option<usize>
evm only.Transform block number to the index of block.
pub fn generic_receipts_root_slow(
&self,
block_number: u64,
f: impl FnOnce(&[T]) -> FixedBytes<32>,
) -> Option<FixedBytes<32>>
Available on crate feature evm only.
pub fn generic_receipts_root_slow( &self, block_number: u64, f: impl FnOnce(&[T]) -> FixedBytes<32>, ) -> Option<FixedBytes<32>>
evm only.Returns the receipt root for all recorded receipts. Note: this function calculated Bloom filters for every receipt and created merkle trees of receipt. This is an expensive operation.
pub const fn receipts(&self) -> &Vec<Vec<T>>
Available on crate feature evm only.
pub const fn receipts(&self) -> &Vec<Vec<T>>
evm only.Returns reference to receipts.
pub const fn receipts_mut(&mut self) -> &mut Vec<Vec<T>>
Available on crate feature evm only.
pub const fn receipts_mut(&mut self) -> &mut Vec<Vec<T>>
evm only.Returns mutable reference to receipts.
pub fn receipts_by_block(&self, block_number: u64) -> &[T]
Available on crate feature evm only.
pub fn receipts_by_block(&self, block_number: u64) -> &[T]
evm only.Return all block receipts
pub const fn len(&self) -> usize
Available on crate feature evm only.
pub const fn len(&self) -> usize
evm only.Number of blocks in the execution outcome.
pub const fn first_block(&self) -> u64
Available on crate feature evm only.
pub const fn first_block(&self) -> u64
evm only.Return first block of the execution outcome
pub const fn last_block(&self) -> u64
Available on crate feature evm only.
pub const fn last_block(&self) -> u64
evm only.Return last block of the execution outcome
pub fn revert_to(&mut self, block_number: u64) -> bool
Available on crate feature evm only.
pub fn revert_to(&mut self, block_number: u64) -> bool
evm only.Revert the state to the given block number.
Returns false if the block number is not in the bundle state.
§Note
The provided block number will stay inside the bundle state.
pub fn split_at(
self,
at: u64,
) -> (Option<ExecutionOutcome<T>>, ExecutionOutcome<T>)where
T: Clone,
Available on crate feature evm only.
pub fn split_at(
self,
at: u64,
) -> (Option<ExecutionOutcome<T>>, ExecutionOutcome<T>)where
T: Clone,
evm only.Splits the block range state at a given block number. Returns two split states ([..at], [at..]). The plain state of the 2nd bundle state will contain extra changes that were made in state transitions belonging to the lower state.
§Panics
If the target block number is not included in the state block range.
pub fn extend(&mut self, other: ExecutionOutcome<T>)
Available on crate feature evm only.
pub fn extend(&mut self, other: ExecutionOutcome<T>)
evm only.Extend one state from another
For state this is very sensitive operation and should be used only when we know that other state was build on top of this one. In most cases this would be true.
pub fn prepend_state(&mut self, other: BundleState)
Available on crate feature evm only.
pub fn prepend_state(&mut self, other: BundleState)
evm only.Prepends present the state with the given BundleState.
It adds changes from the given state but does not override any existing changes.
Reverts and receipts are not updated.
pub fn with_receipts(self, receipts: Vec<Vec<T>>) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub fn with_receipts(self, receipts: Vec<Vec<T>>) -> ExecutionOutcome<T>
evm only.Create a new instance with updated receipts.
pub fn with_requests(self, requests: Vec<Requests>) -> ExecutionOutcome<T>
Available on crate feature evm only.
pub fn with_requests(self, requests: Vec<Requests>) -> ExecutionOutcome<T>
evm only.Create a new instance with updated requests.
pub fn changed_accounts(&self) -> impl Iterator<Item = ChangedAccount>
Available on crate feature evm only.
pub fn changed_accounts(&self) -> impl Iterator<Item = ChangedAccount>
evm only.Returns an iterator over all changed accounts from the ExecutionOutcome.
This method filters the accounts to return only those that have undergone changes
and maps them into ChangedAccount instances, which include the address, nonce, and
balance.
§impl<T> ExecutionOutcome<T>
impl<T> ExecutionOutcome<T>
§impl ExecutionOutcome
impl ExecutionOutcome
pub fn ethereum_receipts_root(
&self,
block_number: u64,
) -> Option<FixedBytes<32>>
Available on crate feature evm only.
pub fn ethereum_receipts_root( &self, block_number: u64, ) -> Option<FixedBytes<32>>
evm only.Returns the ethereum receipt root for all recorded receipts.
Note: this function calculated Bloom filters for every receipt and created merkle trees of receipt. This is a expensive operation.
Trait Implementations§
§impl<T> Clone for ExecutionOutcome<T>where
T: Clone,
impl<T> Clone for ExecutionOutcome<T>where
T: Clone,
§fn clone(&self) -> ExecutionOutcome<T>
fn clone(&self) -> ExecutionOutcome<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more§impl<T> Debug for ExecutionOutcome<T>where
T: Debug,
impl<T> Debug for ExecutionOutcome<T>where
T: Debug,
§impl<T> Default for ExecutionOutcome<T>
impl<T> Default for ExecutionOutcome<T>
§fn default() -> ExecutionOutcome<T>
fn default() -> ExecutionOutcome<T>
§impl<'de, T> Deserialize<'de> for ExecutionOutcome<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ExecutionOutcome<T>where
T: Deserialize<'de>,
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionOutcome<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionOutcome<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
§impl<'de, T> DeserializeAs<'de, ExecutionOutcome<T>> for ExecutionOutcome<'de, T>where
T: SerdeBincodeCompat + Debug,
impl<'de, T> DeserializeAs<'de, ExecutionOutcome<T>> for ExecutionOutcome<'de, T>where
T: SerdeBincodeCompat + Debug,
§fn deserialize_as<D>(
deserializer: D,
) -> Result<ExecutionOutcome<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize_as<D>(
deserializer: D,
) -> Result<ExecutionOutcome<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl<'a, T> From<&'a ExecutionOutcome<T>> for ExecutionOutcome<'a, T>where
T: SerdeBincodeCompat + Debug,
impl<'a, T> From<&'a ExecutionOutcome<T>> for ExecutionOutcome<'a, T>where
T: SerdeBincodeCompat + Debug,
§fn from(value: &'a ExecutionOutcome<T>) -> ExecutionOutcome<'a, T>
fn from(value: &'a ExecutionOutcome<T>) -> ExecutionOutcome<'a, T>
§impl<T> From<(BlockExecutionOutput<T>, u64)> for ExecutionOutcome<T>
impl<T> From<(BlockExecutionOutput<T>, u64)> for ExecutionOutcome<T>
§fn from(_: (BlockExecutionOutput<T>, u64)) -> ExecutionOutcome<T>
fn from(_: (BlockExecutionOutput<T>, u64)) -> ExecutionOutcome<T>
§impl<'a, T> From<ExecutionOutcome<'a, T>> for ExecutionOutcome<T>where
T: SerdeBincodeCompat + Debug,
impl<'a, T> From<ExecutionOutcome<'a, T>> for ExecutionOutcome<T>where
T: SerdeBincodeCompat + Debug,
§fn from(value: ExecutionOutcome<'a, T>) -> ExecutionOutcome<T>
fn from(value: ExecutionOutcome<'a, T>) -> ExecutionOutcome<T>
§impl<T> PartialEq for ExecutionOutcome<T>where
T: PartialEq,
impl<T> PartialEq for ExecutionOutcome<T>where
T: PartialEq,
§impl<T> SerdeBincodeCompat for ExecutionOutcome<T>where
T: SerdeBincodeCompat + Debug,
impl<T> SerdeBincodeCompat for ExecutionOutcome<T>where
T: SerdeBincodeCompat + Debug,
§type BincodeRepr<'a> = ExecutionOutcome<'a, T>
type BincodeRepr<'a> = ExecutionOutcome<'a, T>
§fn as_repr(
&self,
) -> <ExecutionOutcome<T> as SerdeBincodeCompat>::BincodeRepr<'_>
fn as_repr( &self, ) -> <ExecutionOutcome<T> as SerdeBincodeCompat>::BincodeRepr<'_>
§fn from_repr(
repr: <ExecutionOutcome<T> as SerdeBincodeCompat>::BincodeRepr<'_>,
) -> ExecutionOutcome<T>
fn from_repr( repr: <ExecutionOutcome<T> as SerdeBincodeCompat>::BincodeRepr<'_>, ) -> ExecutionOutcome<T>
§impl<T> Serialize for ExecutionOutcome<T>where
T: Serialize,
impl<T> Serialize for ExecutionOutcome<T>where
T: Serialize,
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
§impl<T> SerializeAs<ExecutionOutcome<T>> for ExecutionOutcome<'_, T>where
T: SerdeBincodeCompat + Debug,
impl<T> SerializeAs<ExecutionOutcome<T>> for ExecutionOutcome<'_, T>where
T: SerdeBincodeCompat + Debug,
§fn serialize_as<S>(
source: &ExecutionOutcome<T>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize_as<S>(
source: &ExecutionOutcome<T>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
impl<T> Eq for ExecutionOutcome<T>where
T: Eq,
impl<T> StructuralPartialEq for ExecutionOutcome<T>
Auto Trait Implementations§
impl<T> Freeze for ExecutionOutcome<T>
impl<T> RefUnwindSafe for ExecutionOutcome<T>where
T: RefUnwindSafe,
impl<T> Send for ExecutionOutcome<T>where
T: Send,
impl<T> Sync for ExecutionOutcome<T>where
T: Sync,
impl<T> Unpin for ExecutionOutcome<T>where
T: Unpin,
impl<T> UnwindSafe for ExecutionOutcome<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§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<TxEnv, T> FromRecoveredTx<&T> for TxEnvwhere
TxEnv: FromRecoveredTx<T>,
impl<TxEnv, T> FromRecoveredTx<&T> for TxEnvwhere
TxEnv: FromRecoveredTx<T>,
§fn from_recovered_tx(tx: &&T, sender: Address) -> TxEnv
fn from_recovered_tx(tx: &&T, sender: Address) -> TxEnv
TxEnv from a transaction and a sender address.§impl<TxEnv, T> FromTxWithEncoded<&T> for TxEnvwhere
TxEnv: FromTxWithEncoded<T>,
impl<TxEnv, T> FromTxWithEncoded<&T> for TxEnvwhere
TxEnv: FromTxWithEncoded<T>,
§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> ⓘ
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 more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].§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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ServiceExt for T
impl<T> ServiceExt for T
§fn propagate_header(self, header: HeaderName) -> PropagateHeader<Self>where
Self: Sized,
fn propagate_header(self, header: HeaderName) -> PropagateHeader<Self>where
Self: Sized,
§fn add_extension<T>(self, value: T) -> AddExtension<Self, T>where
Self: Sized,
fn add_extension<T>(self, value: T) -> AddExtension<Self, T>where
Self: Sized,
§fn map_request_body<F>(self, f: F) -> MapRequestBody<Self, F>where
Self: Sized,
fn map_request_body<F>(self, f: F) -> MapRequestBody<Self, F>where
Self: Sized,
§fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
§fn compression(self) -> Compression<Self>where
Self: Sized,
fn compression(self) -> Compression<Self>where
Self: Sized,
§fn decompression(self) -> Decompression<Self>where
Self: Sized,
fn decompression(self) -> Decompression<Self>where
Self: Sized,
§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
§fn sensitive_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<SetSensitiveResponseHeaders<Self>>where
Self: Sized,
fn sensitive_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<SetSensitiveResponseHeaders<Self>>where
Self: Sized,
§fn sensitive_request_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<Self>where
Self: Sized,
fn sensitive_request_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveRequestHeaders<Self>where
Self: Sized,
§fn sensitive_response_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveResponseHeaders<Self>where
Self: Sized,
fn sensitive_response_headers(
self,
headers: impl IntoIterator<Item = HeaderName>,
) -> SetSensitiveResponseHeaders<Self>where
Self: Sized,
§fn override_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn override_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
§fn append_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn append_request_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
§fn insert_request_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
fn insert_request_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<Self, M>where
Self: Sized,
§fn override_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn override_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
§fn append_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn append_response_header<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
§fn insert_response_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
fn insert_response_header_if_not_present<M>(
self,
header_name: HeaderName,
make: M,
) -> SetResponseHeader<Self, M>where
Self: Sized,
§fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
§fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
x-request-id as the header name. Read more§fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
§fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
x-request-id as the header name. Read more§fn catch_panic(self) -> CatchPanic<Self, DefaultResponseForPanic>where
Self: Sized,
fn catch_panic(self) -> CatchPanic<Self, DefaultResponseForPanic>where
Self: Sized,
500 Internal Server responses. Read more§fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
413 Payload Too Large responses. Read more§fn trim_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
fn trim_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
§fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
fn append_trailing_slash(self) -> NormalizePath<Self>where
Self: Sized,
§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.§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<'de, T> BorrowedRpcObject<'de> for Twhere
T: RpcBorrow<'de> + RpcSend,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeDebug for Twhere
T: Debug,
impl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSendSync for T
impl<T> MaybeSerde for Twhere
T: Serialize + for<'de> Deserialize<'de>,
impl<T> MaybeSerdeBincodeCompat for Twhere
T: SerdeBincodeCompat,
impl<T> NippyJarHeader for T
impl<'de, T> RpcBorrow<'de> for T
impl<T> RpcObject for Twhere
T: RpcSend + RpcRecv,
impl<T> RpcRecv for T
impl<T> RpcSend 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: 176 bytes