Trait PathDisp

Source
pub trait PathDisp {
    // Required methods
    fn to_list(&self) -> Vec<String>;
    fn disp(&self) -> String;
    fn disp_by(&self, sep: &str) -> String;
    fn abs(&self) -> String;
    fn resolve(&self, path: &str) -> String;
}

Required Methods§

Source

fn to_list(&self) -> Vec<String>

Source

fn disp(&self) -> String

Source

fn disp_by(&self, sep: &str) -> String

Source

fn abs(&self) -> String

Source

fn resolve(&self, path: &str) -> String

Implementations on Foreign Types§

Source§

impl PathDisp for Path

Source§

fn resolve(&self, path: &str) -> String

Source§

fn to_list(&self) -> Vec<String>

Source§

fn disp_by(&self, sep: &str) -> String

Source§

fn disp(&self) -> String

Source§

fn abs(&self) -> String

Implementors§