Enum ethers_solc::artifacts::ast::Expression
source · pub enum Expression {
Show 14 variants
Assignment(Box<Assignment>),
BinaryOperation(Box<BinaryOperation>),
Conditional(Box<Conditional>),
ElementaryTypeNameExpression(Box<ElementaryTypeNameExpression>),
FunctionCall(Box<FunctionCall>),
FunctionCallOptions(Box<FunctionCallOptions>),
Identifier(Box<Identifier>),
IndexAccess(Box<IndexAccess>),
IndexRangeAccess(Box<IndexRangeAccess>),
Literal(Box<Literal>),
MemberAccess(Box<MemberAccess>),
NewExpression(Box<NewExpression>),
TupleExpression(Box<TupleExpression>),
UnaryOperation(Box<UnaryOperation>),
}
Variants§
Assignment(Box<Assignment>)
BinaryOperation(Box<BinaryOperation>)
Conditional(Box<Conditional>)
ElementaryTypeNameExpression(Box<ElementaryTypeNameExpression>)
FunctionCall(Box<FunctionCall>)
FunctionCallOptions(Box<FunctionCallOptions>)
Identifier(Box<Identifier>)
IndexAccess(Box<IndexAccess>)
IndexRangeAccess(Box<IndexRangeAccess>)
Literal(Box<Literal>)
MemberAccess(Box<MemberAccess>)
NewExpression(Box<NewExpression>)
TupleExpression(Box<TupleExpression>)
UnaryOperation(Box<UnaryOperation>)
Trait Implementations§
source§impl Clone for Expression
impl Clone for Expression
source§fn clone(&self) -> Expression
fn clone(&self) -> Expression
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 Expression
impl Debug for Expression
source§impl<'de> Deserialize<'de> for Expression
impl<'de> Deserialize<'de> for Expression
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 PartialEq for Expression
impl PartialEq for Expression
source§fn eq(&self, other: &Expression) -> bool
fn eq(&self, other: &Expression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Expression
impl Serialize for Expression
impl Eq for Expression
impl StructuralPartialEq for Expression
Auto Trait Implementations§
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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> 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.