Struct syn_solidity::CatchClause
source · pub struct CatchClause {
pub catch_token: catch,
pub name: Option<SolIdent>,
pub paren_token: Option<Paren>,
pub list: ParameterList,
pub block: Block,
}
Expand description
A catch clause of a StmtTry
: catch { ... }
.
Solidity reference: https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityParser.tryStatement
Fields§
§catch_token: catch
§name: Option<SolIdent>
§paren_token: Option<Paren>
§list: ParameterList
§block: Block
Trait Implementations§
source§impl Clone for CatchClause
impl Clone for CatchClause
source§fn clone(&self) -> CatchClause
fn clone(&self) -> CatchClause
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 CatchClause
impl Debug for CatchClause
source§impl Parse for CatchClause
impl Parse for CatchClause
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl Spanned for CatchClause
impl Spanned for CatchClause
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 CatchClause
impl !Send for CatchClause
impl !Sync for CatchClause
impl Unpin for CatchClause
impl UnwindSafe for CatchClause
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