@@ -1420,6 +1420,9 @@ impl Clone for PathBuf {
1420
1420
1421
1421
#[ stable( feature = "box_from_path" , since = "1.17.0" ) ]
1422
1422
impl From < & Path > for Box < Path > {
1423
+ /// Creates a boxed [`Path`] from a reference.
1424
+ ///
1425
+ /// This will allocate and clone `path` to it.
1423
1426
fn from ( path : & Path ) -> Box < Path > {
1424
1427
let boxed: Box < OsStr > = path. inner . into ( ) ;
1425
1428
let rw = Box :: into_raw ( boxed) as * mut Path ;
@@ -1429,6 +1432,9 @@ impl From<&Path> for Box<Path> {
1429
1432
1430
1433
#[ stable( feature = "box_from_cow" , since = "1.45.0" ) ]
1431
1434
impl From < Cow < ' _ , Path > > for Box < Path > {
1435
+ /// Creates a boxed [`Path`] from a clone-on-write pointer.
1436
+ ///
1437
+ /// Converting from a `Cow::Owned` does not clone or allocate.
1432
1438
#[ inline]
1433
1439
fn from ( cow : Cow < ' _ , Path > ) -> Box < Path > {
1434
1440
match cow {
@@ -1471,6 +1477,9 @@ impl Clone for Box<Path> {
1471
1477
1472
1478
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1473
1479
impl < T : ?Sized + AsRef < OsStr > > From < & T > for PathBuf {
1480
+ /// Converts a borrowed `OsStr` to a `PathBuf`.
1481
+ ///
1482
+ /// Allocates a [`PathBuf`] and copies the data into it.
1474
1483
#[ inline]
1475
1484
fn from ( s : & T ) -> PathBuf {
1476
1485
PathBuf :: from ( s. as_ref ( ) . to_os_string ( ) )
@@ -1575,6 +1584,10 @@ impl Default for PathBuf {
1575
1584
1576
1585
#[ stable( feature = "cow_from_path" , since = "1.6.0" ) ]
1577
1586
impl < ' a > From < & ' a Path > for Cow < ' a , Path > {
1587
+ /// Creates a clone-on-write pointer from a reference to
1588
+ /// [`Path`].
1589
+ ///
1590
+ /// This conversion does not clone or allocate.
1578
1591
#[ inline]
1579
1592
fn from ( s : & ' a Path ) -> Cow < ' a , Path > {
1580
1593
Cow :: Borrowed ( s)
@@ -1583,6 +1596,10 @@ impl<'a> From<&'a Path> for Cow<'a, Path> {
1583
1596
1584
1597
#[ stable( feature = "cow_from_path" , since = "1.6.0" ) ]
1585
1598
impl < ' a > From < PathBuf > for Cow < ' a , Path > {
1599
+ /// Creates a clone-on-write pointer from an owned
1600
+ /// instance of [`PathBuf`].
1601
+ ///
1602
+ /// This conversion does not clone or allocate.
1586
1603
#[ inline]
1587
1604
fn from ( s : PathBuf ) -> Cow < ' a , Path > {
1588
1605
Cow :: Owned ( s)
@@ -1591,6 +1608,10 @@ impl<'a> From<PathBuf> for Cow<'a, Path> {
1591
1608
1592
1609
#[ stable( feature = "cow_from_pathbuf_ref" , since = "1.28.0" ) ]
1593
1610
impl < ' a > From < & ' a PathBuf > for Cow < ' a , Path > {
1611
+ /// Creates a clone-on-write pointer from a reference to
1612
+ /// [`PathBuf`].
1613
+ ///
1614
+ /// This conversion does not clone or allocate.
1594
1615
#[ inline]
1595
1616
fn from ( p : & ' a PathBuf ) -> Cow < ' a , Path > {
1596
1617
Cow :: Borrowed ( p. as_path ( ) )
@@ -1599,6 +1620,9 @@ impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
1599
1620
1600
1621
#[ stable( feature = "pathbuf_from_cow_path" , since = "1.28.0" ) ]
1601
1622
impl < ' a > From < Cow < ' a , Path > > for PathBuf {
1623
+ /// Converts a clone-on-write pointer to an owned path.
1624
+ ///
1625
+ /// Converting from a `Cow::Owned` does not clone or allocate.
1602
1626
#[ inline]
1603
1627
fn from ( p : Cow < ' a , Path > ) -> Self {
1604
1628
p. into_owned ( )
@@ -2462,10 +2486,10 @@ impl Path {
2462
2486
/// Returns `true` if the path points at an existing entity.
2463
2487
///
2464
2488
/// This function will traverse symbolic links to query information about the
2465
- /// destination file. In case of broken symbolic links this will return `false`.
2489
+ /// destination file.
2466
2490
///
2467
- /// If you cannot access the directory containing the file, e.g., because of a
2468
- /// permission error, this will return `false`.
2491
+ /// If you cannot access the metadata of the file, e.g. because of a
2492
+ /// permission error or broken symbolic links , this will return `false`.
2469
2493
///
2470
2494
/// # Examples
2471
2495
///
@@ -2513,10 +2537,10 @@ impl Path {
2513
2537
/// Returns `true` if the path exists on disk and is pointing at a regular file.
2514
2538
///
2515
2539
/// This function will traverse symbolic links to query information about the
2516
- /// destination file. In case of broken symbolic links this will return `false`.
2540
+ /// destination file.
2517
2541
///
2518
- /// If you cannot access the directory containing the file, e.g., because of a
2519
- /// permission error, this will return `false`.
2542
+ /// If you cannot access the metadata of the file, e.g. because of a
2543
+ /// permission error or broken symbolic links , this will return `false`.
2520
2544
///
2521
2545
/// # Examples
2522
2546
///
@@ -2545,10 +2569,10 @@ impl Path {
2545
2569
/// Returns `true` if the path exists on disk and is pointing at a directory.
2546
2570
///
2547
2571
/// This function will traverse symbolic links to query information about the
2548
- /// destination file. In case of broken symbolic links this will return `false`.
2572
+ /// destination file.
2549
2573
///
2550
- /// If you cannot access the directory containing the file, e.g., because of a
2551
- /// permission error, this will return `false`.
2574
+ /// If you cannot access the metadata of the file, e.g. because of a
2575
+ /// permission error or broken symbolic links , this will return `false`.
2552
2576
///
2553
2577
/// # Examples
2554
2578
///
0 commit comments