[][src]Struct lib_ruby_parser::nodes::InMatch

pub struct InMatch {
    pub value: Node,
    pub pattern: Node,
    pub operator_l: Range,
    pub expression_l: Range,
}

Represents a one-line pattern matching (i.e. foo in pattern)

Fields

value: Node

Value that is used for matching

pattern: Node

Pattern that is used for matching

operator_l: Range

Location of the in keyword

foo in pattern
    ~~
expression_l: Range

Location of the in keyword

foo in pattern
~~~~~~~~~~~~~~

Trait Implementations

impl Clone for InMatch[src]

impl Debug for InMatch[src]

impl PartialEq<InMatch> for InMatch[src]

impl StructuralPartialEq for InMatch[src]

Auto Trait Implementations

impl RefUnwindSafe for InMatch

impl Send for InMatch

impl Sync for InMatch

impl Unpin for InMatch

impl UnwindSafe for InMatch

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.