Searched defs:OwnedSocket (Results 1 – 11 of 11) sorted by relevance
68 pub struct OwnedSocket { struct69 socket: RawSocket,104 impl AsRawSocket for OwnedSocket { implementation112 impl IntoRawSocket for OwnedSocket { implementation122 impl FromRawSocket for OwnedSocket { implementation131 impl Drop for OwnedSocket { implementation150 impl fmt::Debug for OwnedSocket { implementation191 impl AsSocket for OwnedSocket { implementation
66 class OwnedSocket { class69 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket70 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
101 class OwnedSocket { class104 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket105 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
68 class OwnedSocket { class71 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in __anond01bcfc60111::OwnedSocket72 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in __anond01bcfc60111::OwnedSocket
255 impl From<TcpListener> for OwnedSocket { implementation
437 impl From<TcpStream> for OwnedSocket { implementation
1004 impl From<crate::Socket> for OwnedSocket { implementation1005 fn from(sock: crate::Socket) -> OwnedSocket { in from()
731 impl From<UdpSocket> for OwnedSocket { implementation