pub trait PathBufExt {
    fn append<P: AsRef<Path>>(self, path: P) -> Self;
}
Expand description

An extension trait to make it easier to work with sys and proc files and folders.

Required Methods

Append a path component.

Convenience wrapper of push().

Implementations on Foreign Types

Implementors