Struct syn_solidity::AssemblyFlags
source · pub struct AssemblyFlags {
pub paren_token: Paren,
pub strings: Punctuated<LitStr, Comma>,
}
Expand description
A list of flags of an assembly statement.
Fields§
§paren_token: Paren
§strings: Punctuated<LitStr, Comma>
Implementations§
source§impl AssemblyFlags
impl AssemblyFlags
pub fn parse_opt(input: ParseStream<'_>) -> Result<Option<Self>>
Trait Implementations§
source§impl Clone for AssemblyFlags
impl Clone for AssemblyFlags
source§fn clone(&self) -> AssemblyFlags
fn clone(&self) -> AssemblyFlags
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 AssemblyFlags
impl Debug for AssemblyFlags
source§impl Parse for AssemblyFlags
impl Parse for AssemblyFlags
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl RefUnwindSafe for AssemblyFlags
impl !Send for AssemblyFlags
impl !Sync for AssemblyFlags
impl Unpin for AssemblyFlags
impl UnwindSafe for AssemblyFlags
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