Struct lib_ruby_parser::nodes::MatchPattern
source · [−]#[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: Loc
Location of the =>
operator
foo => pattern
~~
expression_l: Loc
Location of the full expression
foo => pattern
~~~~~~~~~~~~~~
Trait Implementations
sourceimpl Clone for MatchPattern
impl Clone for MatchPattern
sourcefn clone(&self) -> MatchPattern
fn clone(&self) -> MatchPattern
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MatchPattern
impl Debug for MatchPattern
sourceimpl PartialEq<MatchPattern> for MatchPattern
impl PartialEq<MatchPattern> for MatchPattern
sourcefn eq(&self, other: &MatchPattern) -> bool
fn eq(&self, other: &MatchPattern) -> bool
impl StructuralPartialEq for MatchPattern
Auto Trait Implementations
impl RefUnwindSafe for MatchPattern
impl Send for MatchPattern
impl Sync for MatchPattern
impl Unpin for MatchPattern
impl UnwindSafe for MatchPattern
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more