Struct lib_ruby_parser::nodes::MatchPattern [−][src]
#[repr(C)]pub struct MatchPattern { pub value: Box<Node>, pub pattern: Box<Node>, pub operator_l: Loc, pub expression_l: Loc, }
Expand description
Represents a one-line pattern matching that can throw an error (i.e. foo => pattern)
Fields
value: Box<Node>Value that is used for matching
pattern: Box<Node>Pattern that is used for matching
operator_l: LocLocation of the => operator
foo => pattern
~~
expression_l: LocLocation of the full expression
foo => pattern
~~~~~~~~~~~~~~
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for MatchPatternimpl Send for MatchPatternimpl Sync for MatchPatternimpl Unpin for MatchPatternimpl UnwindSafe for MatchPatternBlanket Implementations
Mutably borrows from an owned value. Read more