pub struct RelPath(/* private fields */);
Expand description
Wrapper around a relative Utf8Path
.
Implementations§
Source§impl RelPath
impl RelPath
Sourcepub fn new_unchecked(path: &Utf8Path) -> &RelPath
pub fn new_unchecked(path: &Utf8Path) -> &RelPath
Creates a new RelPath
from path
, without checking if it is relative.
Sourcepub fn to_path_buf(&self) -> RelPathBuf
pub fn to_path_buf(&self) -> RelPathBuf
Equivalent of Utf8Path::to_path_buf
for RelPath
.