Update name
This commit is contained in:
parent
15262ec6be
commit
07443f17d4
42 changed files with 158 additions and 158 deletions
|
|
@ -577,8 +577,8 @@ impl Read for TcpStream {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn can_read_vectored(&self) -> bool {
|
||||
self.0.can_read_vectored()
|
||||
fn is_read_vectored(&self) -> bool {
|
||||
self.0.is_read_vectored()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
|
@ -597,8 +597,8 @@ impl Write for TcpStream {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn can_write_vectored(&self) -> bool {
|
||||
self.0.can_write_vectored()
|
||||
fn is_write_vectored(&self) -> bool {
|
||||
self.0.is_write_vectored()
|
||||
}
|
||||
|
||||
fn flush(&mut self) -> io::Result<()> {
|
||||
|
|
@ -616,8 +616,8 @@ impl Read for &TcpStream {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn can_read_vectored(&self) -> bool {
|
||||
self.0.can_read_vectored()
|
||||
fn is_read_vectored(&self) -> bool {
|
||||
self.0.is_read_vectored()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
|
@ -636,8 +636,8 @@ impl Write for &TcpStream {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn can_write_vectored(&self) -> bool {
|
||||
self.0.can_write_vectored()
|
||||
fn is_write_vectored(&self) -> bool {
|
||||
self.0.is_write_vectored()
|
||||
}
|
||||
|
||||
fn flush(&mut self) -> io::Result<()> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue