pub enum YulStatement {
Block(YulBlock),
VariableDeclaration(YulVariableDeclaration),
Assignment(YulAssignment),
FunctionCall(YulFunctionCall),
If(YulIfStatement),
For(YulForStatement),
Switch(YulSwitchStatement),
FunctionDefinition(YulFunctionDefinition),
Leave,
Break,
Continue,
}
Variants§
Block(YulBlock)
VariableDeclaration(YulVariableDeclaration)
Assignment(YulAssignment)
FunctionCall(YulFunctionCall)
If(YulIfStatement)
For(YulForStatement)
Switch(YulSwitchStatement)
FunctionDefinition(YulFunctionDefinition)
Leave
Break
Continue
Trait Implementations§
Source§impl Clone for YulStatement
impl Clone for YulStatement
Source§fn clone(&self) -> YulStatement
fn clone(&self) -> YulStatement
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 YulStatement
impl Debug for YulStatement
Source§impl PartialEq for YulStatement
impl PartialEq for YulStatement
impl StructuralPartialEq for YulStatement
Auto Trait Implementations§
impl Freeze for YulStatement
impl RefUnwindSafe for YulStatement
impl Send for YulStatement
impl Sync for YulStatement
impl Unpin for YulStatement
impl UnwindSafe for YulStatement
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