@@ -414,6 +414,7 @@ impl fmt::Debug for Stdin {
414
414
}
415
415
416
416
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
417
+ #[ doc( notable_trait) ]
417
418
impl Read for Stdin {
418
419
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
419
420
self . lock ( ) . read ( buf)
@@ -445,6 +446,7 @@ impl StdinLock<'_> {
445
446
}
446
447
447
448
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
449
+ #[ doc( notable_trait) ]
448
450
impl Read for StdinLock < ' _ > {
449
451
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
450
452
self . inner . read ( buf)
@@ -665,6 +667,7 @@ impl fmt::Debug for Stdout {
665
667
}
666
668
667
669
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
670
+ #[ doc( notable_trait) ]
668
671
impl Write for Stdout {
669
672
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
670
673
( & * self ) . write ( buf)
@@ -691,6 +694,7 @@ impl Write for Stdout {
691
694
}
692
695
693
696
#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
697
+ #[ doc( notable_trait) ]
694
698
impl Write for & Stdout {
695
699
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
696
700
self . lock ( ) . write ( buf)
@@ -717,6 +721,7 @@ impl Write for &Stdout {
717
721
}
718
722
719
723
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
724
+ #[ doc( notable_trait) ]
720
725
impl Write for StdoutLock < ' _ > {
721
726
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
722
727
self . inner . borrow_mut ( ) . write ( buf)
@@ -884,6 +889,7 @@ impl fmt::Debug for Stderr {
884
889
}
885
890
886
891
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
892
+ #[ doc( notable_trait) ]
887
893
impl Write for Stderr {
888
894
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
889
895
( & * self ) . write ( buf)
@@ -910,6 +916,7 @@ impl Write for Stderr {
910
916
}
911
917
912
918
#[ stable( feature = "write_mt" , since = "1.48.0" ) ]
919
+ #[ doc( notable_trait) ]
913
920
impl Write for & Stderr {
914
921
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
915
922
self . lock ( ) . write ( buf)
@@ -936,6 +943,7 @@ impl Write for &Stderr {
936
943
}
937
944
938
945
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
946
+ #[ doc( notable_trait) ]
939
947
impl Write for StderrLock < ' _ > {
940
948
fn write ( & mut self , buf : & [ u8 ] ) -> io:: Result < usize > {
941
949
self . inner . borrow_mut ( ) . write ( buf)
0 commit comments