pub trait AsReadWriteGrip: AsReadWriteFd {
// Required methods
fn as_read_grip(&self) -> BorrowedGrip<'_>;
fn as_write_grip(&self) -> BorrowedGrip<'_>;
}Expand description
Portability abstraction over AsReadWriteFd and
AsReadWriteHandleOrSocket.
Required Methods§
Sourcefn as_read_grip(&self) -> BorrowedGrip<'_>
fn as_read_grip(&self) -> BorrowedGrip<'_>
Extracts the grip for reading.
Like AsGrip::as_grip, but returns the
reading grip.
Sourcefn as_write_grip(&self) -> BorrowedGrip<'_>
fn as_write_grip(&self) -> BorrowedGrip<'_>
Extracts the grip for writing.
Like AsGrip::as_grip, but returns the
writing grip.