Implemented PathBuf::new

yoshuawuyts-patch-1
Wouter Geraedts 5 years ago
parent 47ef222dab
commit 71125d5c3b

@ -51,6 +51,19 @@ impl PathBuf {
pub fn into_os_string(self) -> OsString { pub fn into_os_string(self) -> OsString {
self.inner.into_os_string() self.inner.into_os_string()
} }
/// Allocates an empty `PathBuf`.
///
/// # Examples
///
/// ```
/// use async_std::path::PathBuf;
///
/// let path = PathBuf::new();
/// ```
pub fn new() -> PathBuf {
std::path::PathBuf::new().into()
}
} }
impl From<std::path::PathBuf> for PathBuf { impl From<std::path::PathBuf> for PathBuf {

Loading…
Cancel
Save