pub enum EvmOutputSelection {
All,
Assembly,
LegacyAssembly,
MethodIdentifiers,
GasEstimates,
ByteCode(BytecodeOutputSelection),
DeployedByteCode(DeployedBytecodeOutputSelection),
}Expand description
Contract level output selection for evm
Variants§
All
Assembly
LegacyAssembly
MethodIdentifiers
GasEstimates
ByteCode(BytecodeOutputSelection)
DeployedByteCode(DeployedBytecodeOutputSelection)
Trait Implementations§
Source§impl Clone for EvmOutputSelection
impl Clone for EvmOutputSelection
Source§fn clone(&self) -> EvmOutputSelection
fn clone(&self) -> EvmOutputSelection
Returns a duplicate 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 EvmOutputSelection
impl Debug for EvmOutputSelection
Source§impl<'de> Deserialize<'de> for EvmOutputSelection
impl<'de> Deserialize<'de> for EvmOutputSelection
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for EvmOutputSelection
impl Display for EvmOutputSelection
Source§impl From<BytecodeOutputSelection> for EvmOutputSelection
impl From<BytecodeOutputSelection> for EvmOutputSelection
Source§fn from(b: BytecodeOutputSelection) -> Self
fn from(b: BytecodeOutputSelection) -> Self
Converts to this type from the input type.
Source§impl From<DeployedBytecodeOutputSelection> for EvmOutputSelection
impl From<DeployedBytecodeOutputSelection> for EvmOutputSelection
Source§fn from(b: DeployedBytecodeOutputSelection) -> Self
fn from(b: DeployedBytecodeOutputSelection) -> Self
Converts to this type from the input type.
Source§impl FromStr for EvmOutputSelection
impl FromStr for EvmOutputSelection
Source§impl Hash for EvmOutputSelection
impl Hash for EvmOutputSelection
Source§impl Ord for EvmOutputSelection
impl Ord for EvmOutputSelection
Source§fn cmp(&self, other: &EvmOutputSelection) -> Ordering
fn cmp(&self, other: &EvmOutputSelection) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EvmOutputSelection
impl PartialEq for EvmOutputSelection
Source§impl PartialOrd for EvmOutputSelection
impl PartialOrd for EvmOutputSelection
Source§impl Serialize for EvmOutputSelection
impl Serialize for EvmOutputSelection
impl Copy for EvmOutputSelection
impl Eq for EvmOutputSelection
impl StructuralPartialEq for EvmOutputSelection
Auto Trait Implementations§
impl Freeze for EvmOutputSelection
impl RefUnwindSafe for EvmOutputSelection
impl Send for EvmOutputSelection
impl Sync for EvmOutputSelection
impl Unpin for EvmOutputSelection
impl UnwindSafe for EvmOutputSelection
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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