Struct AbsPathBuf
pub struct AbsPathBuf(/* private fields */);
Expand description
A [Utf8PathBuf
] that is guaranteed to be absolute.
Implementations§
§impl AbsPathBuf
impl AbsPathBuf
pub fn assert(path: Utf8PathBuf) -> AbsPathBuf
pub fn assert(path: Utf8PathBuf) -> AbsPathBuf
pub fn assert_utf8(path: PathBuf) -> AbsPathBuf
pub fn assert_utf8(path: PathBuf) -> AbsPathBuf
pub fn as_path(&self) -> &AbsPath
pub fn as_path(&self) -> &AbsPath
Coerces to an AbsPath
slice.
Equivalent of [Utf8PathBuf::as_path
] for AbsPathBuf
.
pub fn pop(&mut self) -> bool
pub fn pop(&mut self) -> bool
Equivalent of [Utf8PathBuf::pop
] for AbsPathBuf
.
Note that this won’t remove the root component, so self
will still be
absolute.
pub fn push<P>(&mut self, suffix: P)where
P: AsRef<Utf8Path>,
pub fn push<P>(&mut self, suffix: P)where
P: AsRef<Utf8Path>,
Equivalent of PathBuf::push
for AbsPathBuf
.
Extends self
with path
.
If path
is absolute, it replaces the current path.
On Windows:
- if
path
has a root but no prefix (e.g.,\windows
), it replaces everything except for the prefix (if any) ofself
. - if
path
has a prefix but no root, it replacesself
. - if
self
has a verbatim prefix (e.g.\\?\C:\windows
) andpath
is not empty, the new path is normalized: all references to.
and..
are removed.
pub fn join(&self, path: impl AsRef<Utf8Path>) -> AbsPathBuf
Methods from Deref<Target = AbsPath>§
pub fn absolutize(&self, path: impl AsRef<Utf8Path>) -> AbsPathBuf
pub fn absolutize(&self, path: impl AsRef<Utf8Path>) -> AbsPathBuf
Equivalent of [Utf8Path::join
] for AbsPath
with an additional normalize step afterwards.
pub fn join(&self, path: impl AsRef<Utf8Path>) -> AbsPathBuf
pub fn join(&self, path: impl AsRef<Utf8Path>) -> AbsPathBuf
Equivalent of [Utf8Path::join
] for AbsPath
.
pub fn normalize(&self) -> AbsPathBuf
pub fn normalize(&self) -> AbsPathBuf
Normalize the given path:
- Removes repeated separators:
/a//b
becomes/a/b
- Removes occurrences of
.
and resolves..
. - Removes trailing slashes:
/a/b/
becomes/a/b
.
§Example
ⓘ
let abs_path_buf = AbsPathBuf::assert("/a/../../b/.//c//".into());
let normalized = abs_path_buf.normalize();
assert_eq!(normalized, AbsPathBuf::assert("/b/c".into()));
pub fn to_path_buf(&self) -> AbsPathBuf
pub fn to_path_buf(&self) -> AbsPathBuf
Equivalent of [Utf8Path::to_path_buf
] for AbsPath
.
pub fn canonicalize(&self) -> !
pub fn strip_prefix(&self, base: &AbsPath) -> Option<&RelPath>
pub fn strip_prefix(&self, base: &AbsPath) -> Option<&RelPath>
Equivalent of [Utf8Path::strip_prefix
] for AbsPath
.
Returns a relative path.
pub fn starts_with(&self, base: &AbsPath) -> bool
pub fn ends_with(&self, suffix: &RelPath) -> bool
pub fn name_and_extension(&self) -> Option<(&str, Option<&str>)>
pub fn file_name(&self) -> Option<&str>
pub fn extension(&self) -> Option<&str>
pub fn file_stem(&self) -> Option<&str>
pub fn as_os_str(&self) -> &OsStr
pub fn as_str(&self) -> &str
pub fn display(&self) -> !
👎Deprecated: use Display instead
pub fn exists(&self) -> !
👎Deprecated: use std::fs::metadata().is_ok() instead
pub fn components(&self) -> Utf8Components<'_>
Trait Implementations§
§impl AsRef<AbsPath> for AbsPathBuf
impl AsRef<AbsPath> for AbsPathBuf
§impl AsRef<OsStr> for AbsPathBuf
impl AsRef<OsStr> for AbsPathBuf
§impl AsRef<Path> for AbsPathBuf
impl AsRef<Path> for AbsPathBuf
§impl AsRef<Utf8Path> for AbsPathBuf
impl AsRef<Utf8Path> for AbsPathBuf
§impl Borrow<AbsPath> for AbsPathBuf
impl Borrow<AbsPath> for AbsPathBuf
§impl Clone for AbsPathBuf
impl Clone for AbsPathBuf
§fn clone(&self) -> AbsPathBuf
fn clone(&self) -> AbsPathBuf
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AbsPathBuf
impl Debug for AbsPathBuf
§impl Deref for AbsPathBuf
impl Deref for AbsPathBuf
§impl Display for AbsPathBuf
impl Display for AbsPathBuf
Source§impl From<AbsPathBuf> for VfsPath
impl From<AbsPathBuf> for VfsPath
Source§fn from(v: AbsPathBuf) -> Self
fn from(v: AbsPathBuf) -> Self
Converts to this type from the input type.
§impl Hash for AbsPathBuf
impl Hash for AbsPathBuf
§impl Ord for AbsPathBuf
impl Ord for AbsPathBuf
§impl<P> PartialEq<P> for AbsPathBuf
impl<P> PartialEq<P> for AbsPathBuf
§impl PartialOrd for AbsPathBuf
impl PartialOrd for AbsPathBuf
§impl TryFrom<&str> for AbsPathBuf
impl TryFrom<&str> for AbsPathBuf
§impl TryFrom<Utf8PathBuf> for AbsPathBuf
impl TryFrom<Utf8PathBuf> for AbsPathBuf
impl Eq for AbsPathBuf
Auto Trait Implementations§
impl Freeze for AbsPathBuf
impl RefUnwindSafe for AbsPathBuf
impl Send for AbsPathBuf
impl Sync for AbsPathBuf
impl Unpin for AbsPathBuf
impl UnwindSafe for AbsPathBuf
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more