Struct wasmer_wasix::LocalUdpSocket
source · pub struct LocalUdpSocket { /* private fields */ }
Trait Implementations§
source§impl Debug for LocalUdpSocket
impl Debug for LocalUdpSocket
source§impl VirtualConnectionlessSocket for LocalUdpSocket
impl VirtualConnectionlessSocket for LocalUdpSocket
source§fn poll_send_to(
&mut self,
cx: &mut Context<'_>,
data: &[u8],
addr: SocketAddr
) -> Poll<Result<usize, NetworkError>>
fn poll_send_to( &mut self, cx: &mut Context<'_>, data: &[u8], addr: SocketAddr ) -> Poll<Result<usize, NetworkError>>
Sends out a datagram or stream of bytes on this socket
to a specific address
source§fn try_send_to(
&mut self,
data: &[u8],
addr: SocketAddr
) -> Result<usize, NetworkError>
fn try_send_to( &mut self, data: &[u8], addr: SocketAddr ) -> Result<usize, NetworkError>
Sends out a datagram or stream of bytes on this socket
to a specific address
source§fn poll_recv_from(
&mut self,
cx: &mut Context<'_>,
buf: &mut [MaybeUninit<u8>]
) -> Poll<Result<(usize, SocketAddr), NetworkError>>
fn poll_recv_from( &mut self, cx: &mut Context<'_>, buf: &mut [MaybeUninit<u8>] ) -> Poll<Result<(usize, SocketAddr), NetworkError>>
Recv a packet from the socket
source§fn try_recv_from(
&mut self,
buf: &mut [MaybeUninit<u8>]
) -> Result<(usize, SocketAddr), NetworkError>
fn try_recv_from( &mut self, buf: &mut [MaybeUninit<u8>] ) -> Result<(usize, SocketAddr), NetworkError>
Recv a packet from the socket
source§impl VirtualSocket for LocalUdpSocket
impl VirtualSocket for LocalUdpSocket
source§fn set_ttl(&mut self, ttl: u32) -> Result<(), NetworkError>
fn set_ttl(&mut self, ttl: u32) -> Result<(), NetworkError>
Sets how many network hops the packets are permitted for new connections
source§fn ttl(&self) -> Result<u32, NetworkError>
fn ttl(&self) -> Result<u32, NetworkError>
Returns the maximum number of network hops before packets are dropped
source§fn addr_local(&self) -> Result<SocketAddr, NetworkError>
fn addr_local(&self) -> Result<SocketAddr, NetworkError>
Returns the local address for this socket
source§fn status(&self) -> Result<SocketStatus, NetworkError>
fn status(&self) -> Result<SocketStatus, NetworkError>
Returns the status/state of the socket
source§fn poll_read_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<usize, NetworkError>>
fn poll_read_ready( &mut self, cx: &mut Context<'_> ) -> Poll<Result<usize, NetworkError>>
Polls the socket for when there is data to be received
source§fn poll_write_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<usize, NetworkError>>
fn poll_write_ready( &mut self, cx: &mut Context<'_> ) -> Poll<Result<usize, NetworkError>>
Polls the socket for when the backpressure allows for writing to the socket
source§impl VirtualUdpSocket for LocalUdpSocket
impl VirtualUdpSocket for LocalUdpSocket
source§fn set_broadcast(&mut self, broadcast: bool) -> Result<(), NetworkError>
fn set_broadcast(&mut self, broadcast: bool) -> Result<(), NetworkError>
Sets a flag that means that the UDP socket is able
to receive and process broadcast packets.
source§fn broadcast(&self) -> Result<bool, NetworkError>
fn broadcast(&self) -> Result<bool, NetworkError>
Indicates if the SO_BROADCAST flag is set which means
that the UDP socket will receive and process broadcast
packets
source§fn set_multicast_loop_v4(&mut self, val: bool) -> Result<(), NetworkError>
fn set_multicast_loop_v4(&mut self, val: bool) -> Result<(), NetworkError>
Sets a flag that indicates if multicast packets that
this socket is a member of will be looped back to
the sending socket. This applies to IPv4 addresses
source§fn multicast_loop_v4(&self) -> Result<bool, NetworkError>
fn multicast_loop_v4(&self) -> Result<bool, NetworkError>
Gets a flag that indicates if multicast packets that
this socket is a member of will be looped back to
the sending socket. This applies to IPv4 addresses
source§fn set_multicast_loop_v6(&mut self, val: bool) -> Result<(), NetworkError>
fn set_multicast_loop_v6(&mut self, val: bool) -> Result<(), NetworkError>
Sets a flag that indicates if multicast packets that
this socket is a member of will be looped back to
the sending socket. This applies to IPv6 addresses
source§fn multicast_loop_v6(&self) -> Result<bool, NetworkError>
fn multicast_loop_v6(&self) -> Result<bool, NetworkError>
Gets a flag that indicates if multicast packets that
this socket is a member of will be looped back to
the sending socket. This applies to IPv6 addresses
source§fn set_multicast_ttl_v4(&mut self, ttl: u32) -> Result<(), NetworkError>
fn set_multicast_ttl_v4(&mut self, ttl: u32) -> Result<(), NetworkError>
Sets the TTL for IPv4 multicast packets which is the
number of network hops before the packet is dropped
source§fn multicast_ttl_v4(&self) -> Result<u32, NetworkError>
fn multicast_ttl_v4(&self) -> Result<u32, NetworkError>
Gets the TTL for IPv4 multicast packets which is the
number of network hops before the packet is dropped
source§fn join_multicast_v4(
&mut self,
multiaddr: Ipv4Addr,
iface: Ipv4Addr
) -> Result<(), NetworkError>
fn join_multicast_v4( &mut self, multiaddr: Ipv4Addr, iface: Ipv4Addr ) -> Result<(), NetworkError>
Tells this interface that it will subscribe to a
particular multicast address. This applies to IPv4 addresses
source§fn leave_multicast_v4(
&mut self,
multiaddr: Ipv4Addr,
iface: Ipv4Addr
) -> Result<(), NetworkError>
fn leave_multicast_v4( &mut self, multiaddr: Ipv4Addr, iface: Ipv4Addr ) -> Result<(), NetworkError>
Tells this interface that it will unsubscribe to a
particular multicast address. This applies to IPv4 addresses
source§fn join_multicast_v6(
&mut self,
multiaddr: Ipv6Addr,
iface: u32
) -> Result<(), NetworkError>
fn join_multicast_v6( &mut self, multiaddr: Ipv6Addr, iface: u32 ) -> Result<(), NetworkError>
Tells this interface that it will subscribe to a
particular multicast address. This applies to IPv6 addresses
source§fn leave_multicast_v6(
&mut self,
multiaddr: Ipv6Addr,
iface: u32
) -> Result<(), NetworkError>
fn leave_multicast_v6( &mut self, multiaddr: Ipv6Addr, iface: u32 ) -> Result<(), NetworkError>
Tells this interface that it will unsubscribe to a
particular multicast address. This applies to IPv6 addresses
source§fn addr_peer(&self) -> Result<Option<SocketAddr>, NetworkError>
fn addr_peer(&self) -> Result<Option<SocketAddr>, NetworkError>
Returns the remote address of this UDP socket if it has been
connected to a specific target destination address
Auto Trait Implementations§
impl RefUnwindSafe for LocalUdpSocket
impl Send for LocalUdpSocket
impl Sync for LocalUdpSocket
impl Unpin for LocalUdpSocket
impl UnwindSafe for LocalUdpSocket
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,
§fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
source§impl<T> Upcastable for Twhere
T: Any + Debug + 'static,
impl<T> Upcastable for Twhere T: Any + Debug + 'static,
§impl<T> Upcastable for Twhere
T: Any + Send + Sync + 'static,
impl<T> Upcastable for Twhere T: Any + Send + Sync + 'static,
§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref