Struct rubic::ast::Path [] [src]

pub struct Path {
    pub parts: Vec<PathSegment>,
}

A list of identifiers separated by periods.

my.object.do_thing.

Fields

The parts that make up the path.

Trait Implementations

impl Clone for Path
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Path
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Path
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Path
[src]

impl FromIterator<PathSegment> for Path
[src]

[src]

Creates a value from an iterator. Read more