pub trait AsTcpStream {
// Required method
fn as_tcp(&self) -> &TcpStream ⓘ;
}
Expand description
The ability access a borrow to an underlying TcpStream,
so one can set options on the stream such as nonblocking
.
pub trait AsTcpStream {
// Required method
fn as_tcp(&self) -> &TcpStream ⓘ;
}
The ability access a borrow to an underlying TcpStream,
so one can set options on the stream such as nonblocking
.