[][src]Struct lib_ruby_parser::nodes::Erange

pub struct Erange {
    pub left: Option<Node>,
    pub right: Option<Node>,
    pub operator_l: Range,
    pub expression_l: Range,
}

Represents range literal with excluded end (i.e. 1...3)

Fields

left: Option<Node>

Begin of the range, None if range has no begin (i.e ...42)

right: Option<Node>

End of the range, None if range has no end (i.e 42...)

operator_l: Range

Location of the ... operator

1...3
 ~~~
expression_l: Range

Location of the full expression

1...3
~~~~~

Trait Implementations

impl Clone for Erange[src]

impl Debug for Erange[src]

impl PartialEq<Erange> for Erange[src]

impl StructuralPartialEq for Erange[src]

Auto Trait Implementations

impl RefUnwindSafe for Erange

impl Send for Erange

impl Sync for Erange

impl Unpin for Erange

impl UnwindSafe for Erange

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.