Trait cpp_to_rust_common::file_utils::PathBufWithAdded
[−]
[src]
pub trait PathBufWithAdded {
fn with_added<P: AsRef<Path>>(&self, path: P) -> PathBuf;
}Adds with_added function for paths.
Required Methods
fn with_added<P: AsRef<Path>>(&self, path: P) -> PathBuf
Appends path to self and returns it as new PathBuf,
leaving self unchanged.