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;
96
96
#[ cfg( not( feature = "std" ) ) ]
97
97
#[ doc( hidden) ]
98
98
/// 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.
99
101
pub mod io_extras {
100
102
use core2:: io:: { self , Read , Write } ;
101
103
@@ -158,6 +160,8 @@ pub mod io_extras {
158
160
#[ cfg( feature = "std" ) ]
159
161
#[ doc( hidden) ]
160
162
/// 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.
161
165
mod io_extras {
162
166
pub fn read_to_end < D : :: std:: io:: Read > ( mut d : D ) -> Result < Vec < u8 > , :: std:: io:: Error > {
163
167
let mut buf = Vec :: new ( ) ;
You can’t perform that action at this time.
0 commit comments