File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ pub use core2::io;
9696#[ cfg( not( feature = "std" ) ) ]
9797#[ doc( hidden) ]
9898/// IO utilities public only for use by in-crate macros. These should not be used externally
99+ ///
100+ /// This is not exported to bindings users as it is not intended for public consumption.
99101pub mod io_extras {
100102 use core2:: io:: { self , Read , Write } ;
101103
@@ -158,6 +160,8 @@ pub mod io_extras {
158160#[ cfg( feature = "std" ) ]
159161#[ doc( hidden) ]
160162/// IO utilities public only for use by in-crate macros. These should not be used externally
163+ ///
164+ /// This is not exported to bindings users as it is not intended for public consumption.
161165mod io_extras {
162166 pub fn read_to_end < D : :: std:: io:: Read > ( mut d : D ) -> Result < Vec < u8 > , :: std:: io:: Error > {
163167 let mut buf = Vec :: new ( ) ;
You can’t perform that action at this time.
0 commit comments