@@ -418,6 +418,7 @@ impl fmt::Debug for Stdin {
418418}
419419
420420#[ stable( feature = "rust1" , since = "1.0.0" ) ]
421+ #[ doc( notable_trait) ]
421422impl Read for Stdin {
422423 fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
423424 self . lock ( ) . read ( buf)
@@ -452,6 +453,7 @@ impl StdinLock<'_> {
452453}
453454
454455#[ stable( feature = "rust1" , since = "1.0.0" ) ]
456+ #[ doc( notable_trait) ]
455457impl Read for StdinLock < ' _ > {
456458 fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
457459 self . inner . read ( buf)
@@ -677,6 +679,7 @@ impl fmt::Debug for Stdout {
677679}
678680
679681#[ stable( feature = "rust1" , since = "1.0.0" ) ]
682+ #[ doc( notable_trait) ]
680683impl Write for Stdout {
681684 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
682685 ( & * self ) . write ( buf)
@@ -703,6 +706,7 @@ impl Write for Stdout {
703706}
704707
705708#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
709+ #[ doc( notable_trait) ]
706710impl Write for & Stdout {
707711 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
708712 self . lock ( ) . write ( buf)
@@ -729,6 +733,7 @@ impl Write for &Stdout {
729733}
730734
731735#[ stable( feature = "rust1" , since = "1.0.0" ) ]
736+ #[ doc( notable_trait) ]
732737impl Write for StdoutLock < ' _ > {
733738 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
734739 self . inner . borrow_mut ( ) . write ( buf)
@@ -897,6 +902,7 @@ impl fmt::Debug for Stderr {
897902}
898903
899904#[ stable( feature = "rust1" , since = "1.0.0" ) ]
905+ #[ doc( notable_trait) ]
900906impl Write for Stderr {
901907 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
902908 ( & * self ) . write ( buf)
@@ -923,6 +929,7 @@ impl Write for Stderr {
923929}
924930
925931#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
932+ #[ doc( notable_trait) ]
926933impl Write for & Stderr {
927934 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
928935 self . lock ( ) . write ( buf)
@@ -949,6 +956,7 @@ impl Write for &Stderr {
949956}
950957
951958#[ stable( feature = "rust1" , since = "1.0.0" ) ]
959+ #[ doc( notable_trait) ]
952960impl Write for StderrLock < ' _ > {
953961 fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
954962 self . inner . borrow_mut ( ) . write ( buf)
0 commit comments