Struct lib_ruby_parser::nodes::MatchAs [−][src]
#[repr(C)]pub struct MatchAs { pub value: Box<Node>, pub as_: Box<Node>, pub operator_l: Loc, pub expression_l: Loc, }
Expand description
Represents matching with renaming into specified local variable (i.e. case 1; in Integer => a; end)
Fields
value: Box<Node>Pattern that is used for matching
as_: Box<Node>Variable that is assigned if matched (see MatchVar node)
operator_l: LocLocation of the => operator
case 1; in Integer => a; end
~~
expression_l: LocLocation of the => operator
case 1; in Integer => a; end
~~~~~~~~~~~~
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MatchAsimpl UnwindSafe for MatchAsBlanket Implementations
Mutably borrows from an owned value. Read more