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.rs30 pub struct OwnedReadHalf { struct
54 pub(crate) fn split_owned(stream: UnixStream) -> (OwnedReadHalf, OwnedWriteHalf) { in split_owned()
67 read: OwnedReadHalf, in reunite()
96 impl OwnedReadHalf { impl
107 impl AsyncRead for OwnedReadHalf { implementation
181 impl AsRef<UnixStream> for OwnedReadHalf { implementation
Dstream.rs628 pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) { in into_split()
/external/rust/crates/tokio/src/net/tcp/
Dsplit_owned.rs31 pub struct OwnedReadHalf { struct
55 pub(crate) fn split_owned(stream: TcpStream) -> (OwnedReadHalf, OwnedWriteHalf) { in split_owned()
68 read: OwnedReadHalf, in reunite()
97 impl OwnedReadHalf { implementation
194 impl AsyncRead for OwnedReadHalf { implementation
268 impl AsRef<TcpStream> for OwnedReadHalf { implementation
Dstream.rs1011 pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) { in into_split()