Home
last modified time | relevance | path

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

/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/udp/
Dudp_socket.rs62 pub fn connect(self, addr: SocketAddr) -> io::Result<ConnectedUdpSocket> { in connect()
306 pub struct ConnectedUdpSocket { struct
312 impl ConnectedUdpSocket { implementation
314 pub fn from_std(socket: UdpSocket) -> ConnectedUdpSocket { in from_std()
630 impl fmt::Debug for ConnectedUdpSocket { implementation
656 impl Source for ConnectedUdpSocket { implementation
682 impl AsRawSocket for ConnectedUdpSocket { implementation
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/udp/
Dudp_socket.rs261 pub fn connect(self, addr: SocketAddr) -> io::Result<ConnectedUdpSocket> { in connect()
394 pub struct ConnectedUdpSocket { struct
398 impl ConnectedUdpSocket { impl
405 pub fn from_std(socket: net::UdpSocket) -> ConnectedUdpSocket { in from_std()
750 impl fmt::Debug for ConnectedUdpSocket { implementation
775 impl Source for ConnectedUdpSocket { implementation
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
Dudp.rs72 pub struct ConnectedUdpSocket { struct
73 pub(crate) source: AsyncSource<ylong_io::ConnectedUdpSocket>, argument
82 impl Debug for ConnectedUdpSocket { implementation
164 pub async fn connect<A: ToSocketAddrs>(self, addr: A) -> io::Result<ConnectedUdpSocket> { in connect()
759 impl ConnectedUdpSocket { implementation
1416 impl AsRawSocket for ConnectedUdpSocket { implementation
1436 impl AsRawFd for ConnectedUdpSocket { implementation
1459 ) -> io::Result<(ConnectedUdpSocket, ConnectedUdpSocket)> in udp_try_bind_connect()
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
Dudp_test.rs179 fn sdv_udp_try_send(connected_sender: ylong_runtime::net::ConnectedUdpSocket) { in sdv_udp_try_send()