Home
last modified time | relevance | path

Searched defs:OwnedReadHalf (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/tokio/src/net/unix/
Dsplit_owned.rs35 pub struct OwnedReadHalf { struct
59 pub(crate) fn split_owned(stream: UnixStream) -> (OwnedReadHalf, OwnedWriteHalf) { in split_owned()
72 read: OwnedReadHalf, in reunite()
101 impl OwnedReadHalf { impl
240 impl AsyncRead for OwnedReadHalf { implementation
399 impl AsRef<UnixStream> for OwnedReadHalf { implementation
Dstream.rs901 pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) { in into_split()
/external/rust/crates/tokio/src/net/tcp/
Dsplit_owned.rs35 pub struct OwnedReadHalf { struct
59 pub(crate) fn split_owned(stream: TcpStream) -> (OwnedReadHalf, OwnedWriteHalf) { in split_owned()
72 read: OwnedReadHalf, in reunite()
101 impl OwnedReadHalf { implementation
330 impl AsyncRead for OwnedReadHalf { implementation
491 impl AsRef<TcpStream> for OwnedReadHalf { implementation
Dstream.rs1236 pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) { in into_split()