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 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MatchPattern) -> bool
fn ne(&self, other: &MatchPattern) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more