[][src]Struct lib_ruby_parser::nodes::Class

pub struct Class {
    pub name: Box<Node>,
    pub superclass: Option<Box<Node>>,
    pub body: Option<Box<Node>>,
    pub keyword_l: Range,
    pub operator_l: Option<Range>,
    pub end_l: Range,
    pub expression_l: Range,
}

Represents a class definition (using a class keyword, Class.new is just a method call)

Fields

name: Box<Node>

Name of the class, String("Foo") for class Foo; end

superclass: Option<Box<Node>>

Superclass. Can be an expression in cases like class A < (obj.foo + 1); end

None if no explicit superclass given (i.e. class Foo; end)

body: Option<Box<Node>>

Body of the method, None if there's no body.

keyword_l: Range

Location of the class keyword.

class Foo; end
~~~~~
operator_l: Option<Range>

Location of the < operator

class A < B; end
        ~

None if there's no explicit superclass given.

end_l: Range

Location of the end keyword.

class Foo; end
           ~~~
expression_l: Range

Location of the full expression

class Foo; end
~~~~~~~~~~~~~~

Trait Implementations

impl Clone for Class[src]

impl Debug for Class[src]

impl PartialEq<Class> for Class[src]

impl StructuralPartialEq for Class[src]

Auto Trait Implementations

impl RefUnwindSafe for Class

impl Send for Class

impl Sync for Class

impl Unpin for Class

impl UnwindSafe for Class

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.