Update name

This commit is contained in:
Steven Fackler
2020-03-11 18:02:52 -07:00
parent 15262ec6be
commit 07443f17d4
42 changed files with 158 additions and 158 deletions

View File

@@ -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 {