Update name
This commit is contained in:
@@ -65,8 +65,8 @@ impl AnonPipe {
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn can_read_vectored(&self) -> bool {
|
||||
self.0.can_read_vectored()
|
||||
pub fn is_read_vectored(&self) -> bool {
|
||||
self.0.is_read_vectored()
|
||||
}
|
||||
|
||||
pub fn write(&self, buf: &[u8]) -> io::Result<usize> {
|
||||
@@ -78,8 +78,8 @@ impl AnonPipe {
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn can_write_vectored(&self) -> bool {
|
||||
self.0.can_write_vectored()
|
||||
pub fn is_write_vectored(&self) -> bool {
|
||||
self.0.is_write_vectored()
|
||||
}
|
||||
|
||||
pub fn fd(&self) -> &FileDesc {
|
||||
|
||||
Reference in New Issue
Block a user