[][src]Struct bracket::parser::ast::Path

pub struct Path<'source> { /* fields omitted */ }

Path to a variable.

Implementations

impl<'source> Path<'source>[src]

pub fn new(source: &'source str) -> Self[src]

Create a new path.

pub fn add_component(&mut self, part: Component<'source>)[src]

Add a component to this path.

pub fn components(&self) -> &Vec<Component<'source>>[src]

Get the path components.

pub fn parents(&self) -> u8[src]

Get the number of parent references.

pub fn set_parents(&mut self, parents: u8)[src]

Set the number of parent references.

pub fn is_root(&self) -> bool[src]

Flag this path as resolved relative to the root value.

pub fn set_root(&mut self, root: bool)[src]

Set whether to resolve relative to a root value.

pub fn is_explicit(&self) -> bool[src]

Flag this path as an explicit scope reference (eg: this or ./).

pub fn set_explicit(&mut self, explicit: bool)[src]

Set whether this path is an explicit reference.

pub fn is_empty(&self) -> bool[src]

Determine if the path components are empty.

pub fn is_local(&self) -> bool[src]

Determine if the first component is a local identifier.

pub fn is_simple(&self) -> bool[src]

Determine if this path is a simple identifier.

Trait Implementations

impl<'_> Debug for Path<'_>[src]

impl<'_> Display for Path<'_>[src]

impl<'source> Eq for Path<'source>[src]

impl<'source> PartialEq<Path<'source>> for Path<'source>[src]

impl<'source> Slice<'source> for Path<'source>[src]

impl<'source> StructuralEq for Path<'source>[src]

impl<'source> StructuralPartialEq for Path<'source>[src]

Auto Trait Implementations

impl<'source> RefUnwindSafe for Path<'source>

impl<'source> Send for Path<'source>

impl<'source> Sync for Path<'source>

impl<'source> Unpin for Path<'source>

impl<'source> UnwindSafe for Path<'source>

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> ToString for T where
    T: Display + ?Sized
[src]

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.