pub struct YulVariableDeclaration {
pub variables: Vec<String>,
pub expression: Option<YulExpression>,
}
Fields§
§variables: Vec<String>
§expression: Option<YulExpression>
Trait Implementations§
Source§impl Clone for YulVariableDeclaration
impl Clone for YulVariableDeclaration
Source§fn clone(&self) -> YulVariableDeclaration
fn clone(&self) -> YulVariableDeclaration
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 YulVariableDeclaration
impl Debug for YulVariableDeclaration
Source§impl PartialEq for YulVariableDeclaration
impl PartialEq for YulVariableDeclaration
impl StructuralPartialEq for YulVariableDeclaration
Auto Trait Implementations§
impl Freeze for YulVariableDeclaration
impl RefUnwindSafe for YulVariableDeclaration
impl Send for YulVariableDeclaration
impl Sync for YulVariableDeclaration
impl Unpin for YulVariableDeclaration
impl UnwindSafe for YulVariableDeclaration
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