1
Fork 0

inline impl AsRef<Path> for PathBuf

This commit is contained in:
Lzu Tao 2020-01-10 19:18:17 +00:00
parent cd5ab97480
commit 76e698fc56

View file

@ -2671,6 +2671,7 @@ impl AsRef<Path> for String {
#[stable(feature = "rust1", since = "1.0.0")]
impl AsRef<Path> for PathBuf {
#[inline]
fn as_ref(&self) -> &Path {
self
}