Struct syn_solidity::YulReturns
source · pub struct YulReturns {
pub arrow_token: RArrow,
pub returns: Punctuated<YulIdent, Comma>,
}
Expand description
The return attribute of a Yul function definition.
Fields§
§arrow_token: RArrow
§returns: Punctuated<YulIdent, Comma>
Implementations§
source§impl YulReturns
impl YulReturns
pub fn parse_opt(input: ParseStream<'_>) -> Result<Option<Self>>
Trait Implementations§
source§impl Clone for YulReturns
impl Clone for YulReturns
source§fn clone(&self) -> YulReturns
fn clone(&self) -> YulReturns
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 YulReturns
impl Debug for YulReturns
source§impl Parse for YulReturns
impl Parse for YulReturns
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl Spanned for YulReturns
impl Spanned for YulReturns
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.Auto Trait Implementations§
impl RefUnwindSafe for YulReturns
impl !Send for YulReturns
impl !Sync for YulReturns
impl Unpin for YulReturns
impl UnwindSafe for YulReturns
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