[][src]Struct libwispha::core::NodePath

pub struct NodePath { /* fields omitted */ }

Methods

impl NodePath[src]

pub fn new(tree: &Tree) -> NodePath[src]

Create a root node path

pub fn to_string(&self) -> String[src]

Convert the node path to an absolute unix-style path string

pub fn from(raw_path: &String, tree: &Tree) -> Result<NodePath, Error>[src]

Convert an absolute unix-style path string to node path.

If path string is not absolute, return Error::NodePathMustBeAbsolute

pub fn push(&self, component: String) -> NodePath[src]

Push a component to the node path

pub fn parent(&self) -> Option<NodePath>[src]

The parent node path of current node path. Return None if current node path is root

pub fn name(&self) -> Option<String>[src]

Return the last component of current node path. Return None if current node path is root

Trait Implementations

impl Clone for NodePath[src]

impl Debug for NodePath[src]

impl Default for NodePath[src]

impl Display for NodePath[src]

Auto Trait Implementations

impl !RefUnwindSafe for NodePath

impl !Send for NodePath

impl !Sync for NodePath

impl Unpin for NodePath

impl !UnwindSafe for NodePath

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> 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.