pub enum EwasmOutputSelection {
All,
Wast,
Wasm,
}
Expand description
Contract level output selection for evm.ewasm
Variants§
Trait Implementations§
Source§impl Clone for EwasmOutputSelection
impl Clone for EwasmOutputSelection
Source§fn clone(&self) -> EwasmOutputSelection
fn clone(&self) -> EwasmOutputSelection
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 EwasmOutputSelection
impl Debug for EwasmOutputSelection
Source§impl<'de> Deserialize<'de> for EwasmOutputSelection
impl<'de> Deserialize<'de> for EwasmOutputSelection
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 EwasmOutputSelection
impl Display for EwasmOutputSelection
Source§impl From<EwasmOutputSelection> for ContractOutputSelection
impl From<EwasmOutputSelection> for ContractOutputSelection
Source§fn from(ewasm: EwasmOutputSelection) -> Self
fn from(ewasm: EwasmOutputSelection) -> Self
Converts to this type from the input type.
Source§impl FromStr for EwasmOutputSelection
impl FromStr for EwasmOutputSelection
Source§impl Hash for EwasmOutputSelection
impl Hash for EwasmOutputSelection
Source§impl Ord for EwasmOutputSelection
impl Ord for EwasmOutputSelection
Source§fn cmp(&self, other: &EwasmOutputSelection) -> Ordering
fn cmp(&self, other: &EwasmOutputSelection) -> 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 EwasmOutputSelection
impl PartialEq for EwasmOutputSelection
Source§impl PartialOrd for EwasmOutputSelection
impl PartialOrd for EwasmOutputSelection
Source§impl Serialize for EwasmOutputSelection
impl Serialize for EwasmOutputSelection
impl Copy for EwasmOutputSelection
impl Eq for EwasmOutputSelection
impl StructuralPartialEq for EwasmOutputSelection
Auto Trait Implementations§
impl Freeze for EwasmOutputSelection
impl RefUnwindSafe for EwasmOutputSelection
impl Send for EwasmOutputSelection
impl Sync for EwasmOutputSelection
impl Unpin for EwasmOutputSelection
impl UnwindSafe for EwasmOutputSelection
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