File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub mod net {
59
59
}
60
60
61
61
pub fn is_read_vectored ( & self ) -> bool {
62
- unimpl ! ( ) ;
62
+ false
63
63
}
64
64
65
65
pub fn peek ( & self , _: & mut [ u8 ] ) -> io:: Result < usize > {
@@ -83,7 +83,7 @@ pub mod net {
83
83
}
84
84
85
85
pub fn is_write_vectored ( & self ) -> bool {
86
- unimpl ! ( ) ;
86
+ false
87
87
}
88
88
89
89
pub fn set_timeout ( & self , _: Option < Duration > , _: libc:: c_int ) -> io:: Result < ( ) > {
@@ -191,7 +191,7 @@ pub mod net {
191
191
}
192
192
193
193
pub fn is_read_vectored ( & self ) -> bool {
194
- unimpl ! ( ) ;
194
+ false
195
195
}
196
196
197
197
pub fn write ( & self , _: & [ u8 ] ) -> io:: Result < usize > {
@@ -203,7 +203,7 @@ pub mod net {
203
203
}
204
204
205
205
pub fn is_write_vectored ( & self ) -> bool {
206
- unimpl ! ( ) ;
206
+ false
207
207
}
208
208
209
209
pub fn peer_addr ( & self ) -> io:: Result < SocketAddr > {
You can’t perform that action at this time.
0 commit comments