Struct ethers_solc::artifacts::ast::IfStatement
source · pub struct IfStatement {
pub id: usize,
pub src: SourceLocation,
pub documentation: Option<String>,
pub condition: Expression,
pub false_body: Option<BlockOrStatement>,
pub true_body: BlockOrStatement,
}
Expand description
An if statement.
Fields§
§id: usize
§src: SourceLocation
§documentation: Option<String>
§condition: Expression
§false_body: Option<BlockOrStatement>
§true_body: BlockOrStatement
Trait Implementations§
source§impl Clone for IfStatement
impl Clone for IfStatement
source§fn clone(&self) -> IfStatement
fn clone(&self) -> IfStatement
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 IfStatement
impl Debug for IfStatement
source§impl<'de> Deserialize<'de> for IfStatement
impl<'de> Deserialize<'de> for IfStatement
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 IfStatement
impl PartialEq for IfStatement
source§fn eq(&self, other: &IfStatement) -> bool
fn eq(&self, other: &IfStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IfStatement
impl Serialize for IfStatement
impl Eq for IfStatement
impl StructuralPartialEq for IfStatement
Auto Trait Implementations§
impl RefUnwindSafe for IfStatement
impl Send for IfStatement
impl Sync for IfStatement
impl Unpin for IfStatement
impl UnwindSafe for IfStatement
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.