[−][src]Struct lib_ruby_parser::nodes::Class
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,