Home
last modified time | relevance | path

Searched defs:OwnedSocket (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/io-lifetimes/src/
Dtypes.rs266 pub struct OwnedSocket { struct
271 impl OwnedSocket { argument
303 pub fn try_clone_to_owned(&self) -> std::io::Result<OwnedSocket> { in try_clone_to_owned()
602 impl AsRawSocket for OwnedSocket { implementation
630 impl IntoRawSocket for OwnedSocket { implementation
663 impl FromRawSocket for OwnedSocket { implementation
789 impl Drop for OwnedSocket { implementation
853 impl fmt::Debug for OwnedSocket { implementation
Dimpls_socket2.rs51 fn into_socket(self) -> OwnedSocket { in into_socket()
57 impl From<socket2::Socket> for OwnedSocket { implementation
Dimpls_mio.rs51 fn into_socket(self) -> OwnedSocket { in into_socket()
57 impl From<mio::net::TcpStream> for OwnedSocket { implementation
131 fn into_socket(self) -> OwnedSocket { in into_socket()
137 impl From<mio::net::TcpListener> for OwnedSocket { implementation
211 fn into_socket(self) -> OwnedSocket { in into_socket()
217 impl From<mio::net::UdpSocket> for OwnedSocket { implementation
Dimpls_async_std.rs138 fn into_socket(self) -> OwnedSocket { in into_socket()
144 impl From<async_std::net::TcpStream> for OwnedSocket { implementation
218 fn into_socket(self) -> OwnedSocket { in into_socket()
224 impl From<async_std::net::TcpListener> for OwnedSocket { implementation
298 fn into_socket(self) -> OwnedSocket { in into_socket()
304 impl From<async_std::net::UdpSocket> for OwnedSocket { implementation
Dimpls_std.rs61 impl AsSocket for OwnedSocket { implementation
85 impl IntoSocket for OwnedSocket { implementation
87 fn into_socket(self) -> OwnedSocket { in into_socket()
109 impl FromSocket for OwnedSocket { implementation
247 fn into_socket(self) -> OwnedSocket { in into_socket()
253 impl From<std::net::TcpStream> for OwnedSocket { implementation
327 fn into_socket(self) -> OwnedSocket { in into_socket()
333 impl From<std::net::TcpListener> for OwnedSocket { implementation
407 fn into_socket(self) -> OwnedSocket { in into_socket()
413 impl From<std::net::UdpSocket> for OwnedSocket { implementation
Dtraits.rs121 fn into_socket(self) -> OwnedSocket; in into_socket()
230 fn from_into_socket<Owned: Into<OwnedSocket>>(into_owned: Owned) -> Self in from_into_socket()
Dlib.rs152 fn into_socket(self) -> OwnedSocket { in into_socket()
Dviews.rs215 unsafe impl SocketlikeViewType for OwnedSocket {} implementation