Feature gate: #![feature(path_absolute_method)]
This is a tracking issue for Path::absolute(), a convenience method on Path that delegates to the free function std::path::absolute(). This mirrors the existing pattern of Path::canonicalize() delegating to fs::canonicalize().
Public API
// std::path
impl Path {
pub fn absolute(&self) -> io::Result<PathBuf>;
}
Steps / History
(Remember to update the S-tracking-* label when checking boxes.)
Unresolved Questions
Feature gate:
#![feature(path_absolute_method)]This is a tracking issue for
Path::absolute(), a convenience method onPaththat delegates to the free functionstd::path::absolute(). This mirrors the existing pattern ofPath::canonicalize()delegating tofs::canonicalize().Public API
Steps / History
(Remember to update the
S-tracking-*label when checking boxes.)Path::absolutemethod as alias forstd::path::absolute#153272Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩