@@ -418,6 +418,7 @@ impl fmt::Debug for Stdin {
418
418
}
419
419
420
420
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
421
+ #[ doc( notable_trait) ]
421
422
impl Read for Stdin {
422
423
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
423
424
self . lock ( ) . read ( buf)
@@ -452,6 +453,7 @@ impl StdinLock<'_> {
452
453
}
453
454
454
455
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
456
+ #[ doc( notable_trait) ]
455
457
impl Read for StdinLock < ' _ > {
456
458
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
457
459
self . inner . read ( buf)
@@ -677,6 +679,7 @@ impl fmt::Debug for Stdout {
677
679
}
678
680
679
681
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
682
+ #[ doc( notable_trait) ]
680
683
impl Write for Stdout {
681
684
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
682
685
( & * self ) . write ( buf)
@@ -703,6 +706,7 @@ impl Write for Stdout {
703
706
}
704
707
705
708
#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
709
+ #[ doc( notable_trait) ]
706
710
impl Write for & Stdout {
707
711
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
708
712
self . lock ( ) . write ( buf)
@@ -729,6 +733,7 @@ impl Write for &Stdout {
729
733
}
730
734
731
735
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
736
+ #[ doc( notable_trait) ]
732
737
impl Write for StdoutLock < ' _ > {
733
738
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
734
739
self . inner . borrow_mut ( ) . write ( buf)
@@ -897,6 +902,7 @@ impl fmt::Debug for Stderr {
897
902
}
898
903
899
904
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
905
+ #[ doc( notable_trait) ]
900
906
impl Write for Stderr {
901
907
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
902
908
( & * self ) . write ( buf)
@@ -923,6 +929,7 @@ impl Write for Stderr {
923
929
}
924
930
925
931
#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
932
+ #[ doc( notable_trait) ]
926
933
impl Write for & Stderr {
927
934
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
928
935
self . lock ( ) . write ( buf)
@@ -949,6 +956,7 @@ impl Write for &Stderr {
949
956
}
950
957
951
958
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
959
+ #[ doc( notable_trait) ]
952
960
impl Write for StderrLock < ' _ > {
953
961
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
954
962
self . inner . borrow_mut ( ) . write ( buf)
0 commit comments