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

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

Implementations

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

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

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

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

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

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

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

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

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

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

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

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

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

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.