pub enum DeployedBytecodeOutputSelection {
All,
FunctionDebugData,
Object,
Opcodes,
SourceMap,
LinkReferences,
GeneratedSources,
ImmutableReferences,
}
Expand description
Contract level output selection for evm.deployedBytecode
Variants§
Trait Implementations§
source§impl Clone for DeployedBytecodeOutputSelection
impl Clone for DeployedBytecodeOutputSelection
source§fn clone(&self) -> DeployedBytecodeOutputSelection
fn clone(&self) -> DeployedBytecodeOutputSelection
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<'de> Deserialize<'de> for DeployedBytecodeOutputSelection
impl<'de> Deserialize<'de> for DeployedBytecodeOutputSelection
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 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 Ord for DeployedBytecodeOutputSelection
impl Ord for DeployedBytecodeOutputSelection
source§fn cmp(&self, other: &DeployedBytecodeOutputSelection) -> Ordering
fn cmp(&self, other: &DeployedBytecodeOutputSelection) -> 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 DeployedBytecodeOutputSelection
impl PartialEq for DeployedBytecodeOutputSelection
source§fn eq(&self, other: &DeployedBytecodeOutputSelection) -> bool
fn eq(&self, other: &DeployedBytecodeOutputSelection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DeployedBytecodeOutputSelection
impl PartialOrd for DeployedBytecodeOutputSelection
source§fn partial_cmp(
&self,
other: &DeployedBytecodeOutputSelection
) -> Option<Ordering>
fn partial_cmp( &self, other: &DeployedBytecodeOutputSelection ) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DeployedBytecodeOutputSelection
impl Eq for DeployedBytecodeOutputSelection
impl StructuralPartialEq for DeployedBytecodeOutputSelection
Auto Trait Implementations§
impl RefUnwindSafe for DeployedBytecodeOutputSelection
impl Send for DeployedBytecodeOutputSelection
impl Sync for DeployedBytecodeOutputSelection
impl Unpin for DeployedBytecodeOutputSelection
impl UnwindSafe for DeployedBytecodeOutputSelection
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<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.