pub struct DatagramSocketSynchronousProxy { /* private fields */ }

Implementations§

source§

impl DatagramSocketSynchronousProxy

source

pub fn new(channel: Channel) -> Self

source

pub fn into_channel(self) -> Channel

source

pub fn wait_for_event( &self, deadline: Time ) -> Result<DatagramSocketEvent, Error>

Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.

source

pub fn clone2(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>

source

pub fn close(&self, ___deadline: Time) -> Result<CloseableCloseResult, Error>

Terminates the connection.

After calling Close, the client must not send any other requests.

Servers, after sending the status response, should close the connection regardless of status and without sending an epitaph.

Closing the client end of the channel should be semantically equivalent to calling Close without knowing when the close has completed or its status.

source

pub fn query(&self, ___deadline: Time) -> Result<Vec<u8>, Error>

source

pub fn set_reuse_address( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetReuseAddressResult, Error>

Set SOL_SOCKET -> SO_REUSEADDR.

source

pub fn get_reuse_address( &self, ___deadline: Time ) -> Result<BaseSocketGetReuseAddressResult, Error>

Get SOL_SOCKET -> SO_REUSEADDR.

source

pub fn get_error( &self, ___deadline: Time ) -> Result<BaseSocketGetErrorResult, Error>

Get SOL_SOCKET -> SO_ERROR. Returns the last error if there is an error set on the socket.

source

pub fn set_broadcast( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetBroadcastResult, Error>

Set SOL_SOCKET -> SO_BROADCAST.

source

pub fn get_broadcast( &self, ___deadline: Time ) -> Result<BaseSocketGetBroadcastResult, Error>

Get SOL_SOCKET -> SO_BROADCAST.

source

pub fn set_send_buffer( &self, value_bytes: u64, ___deadline: Time ) -> Result<BaseSocketSetSendBufferResult, Error>

Set SOL_SOCKET -> SO_SNDBUF.

source

pub fn get_send_buffer( &self, ___deadline: Time ) -> Result<BaseSocketGetSendBufferResult, Error>

Get SOL_SOCKET -> SO_SNDBUF.

source

pub fn set_receive_buffer( &self, value_bytes: u64, ___deadline: Time ) -> Result<BaseSocketSetReceiveBufferResult, Error>

Set SOL_SOCKET -> SO_RCVBUF.

source

pub fn get_receive_buffer( &self, ___deadline: Time ) -> Result<BaseSocketGetReceiveBufferResult, Error>

Get SOL_SOCKET -> SO_RCVBUF.

source

pub fn set_keep_alive( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetKeepAliveResult, Error>

Set SOL_SOCKET -> SO_KEEPALIVE.

source

pub fn get_keep_alive( &self, ___deadline: Time ) -> Result<BaseSocketGetKeepAliveResult, Error>

Get SOL_SOCKET -> SO_KEEPALIVE.

source

pub fn set_out_of_band_inline( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetOutOfBandInlineResult, Error>

Set SOL_SOCKET -> SO_OOBINLINE.

source

pub fn get_out_of_band_inline( &self, ___deadline: Time ) -> Result<BaseSocketGetOutOfBandInlineResult, Error>

Get SOL_SOCKET -> SO_OOBINLINE.

source

pub fn set_no_check( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetNoCheckResult, Error>

Set SOL_SOCKET -> SO_NO_CHECK.

source

pub fn get_no_check( &self, ___deadline: Time ) -> Result<BaseSocketGetNoCheckResult, Error>

Get SOL_SOCKET -> SO_NO_CHECK.

source

pub fn set_linger( &self, linger: bool, length_secs: u32, ___deadline: Time ) -> Result<BaseSocketSetLingerResult, Error>

Set SOL_SOCKET -> SO_LINGER.

source

pub fn get_linger( &self, ___deadline: Time ) -> Result<BaseSocketGetLingerResult, Error>

Get SOL_SOCKET -> SO_LINGER.

source

pub fn set_reuse_port( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetReusePortResult, Error>

Set SOL_SOCKET -> SO_REUSEPORT.

source

pub fn get_reuse_port( &self, ___deadline: Time ) -> Result<BaseSocketGetReusePortResult, Error>

Get SOL_SOCKET -> SO_REUSEPORT.

source

pub fn get_accept_conn( &self, ___deadline: Time ) -> Result<BaseSocketGetAcceptConnResult, Error>

Get SOL_SOCKET -> SO_ACCEPTCONN.

source

pub fn set_bind_to_device( &self, value: &str, ___deadline: Time ) -> Result<BaseSocketSetBindToDeviceResult, Error>

Set SOL_SOCKET -> SO_BINDTODEVICE.

source

pub fn get_bind_to_device( &self, ___deadline: Time ) -> Result<BaseSocketGetBindToDeviceResult, Error>

Get SOL_SOCKET -> SO_BINDTODEVICE.

source

pub fn set_timestamp( &self, value: TimestampOption, ___deadline: Time ) -> Result<BaseSocketSetTimestampResult, Error>

Set SOL_SOCKET -> SO_TIMESTAMP or SO_TIMESTAMPNS.

source

pub fn get_timestamp( &self, ___deadline: Time ) -> Result<BaseSocketGetTimestampResult, Error>

Get SOL_SOCKET -> SO_TIMESTAMP or SO_TIMESTAMPNS.

source

pub fn bind( &self, addr: &SocketAddress, ___deadline: Time ) -> Result<BaseNetworkSocketBindResult, Error>

Sets the local address used for the socket.

source

pub fn connect( &self, addr: &SocketAddress, ___deadline: Time ) -> Result<BaseNetworkSocketConnectResult, Error>

Initiates a connection to a remote address.

source

pub fn disconnect( &self, ___deadline: Time ) -> Result<BaseNetworkSocketDisconnectResult, Error>

Clears connection information from this socket.

source

pub fn get_sock_name( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetSockNameResult, Error>

Retrieves the local socket address.

source

pub fn get_peer_name( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetPeerNameResult, Error>

Retrieves the remote socket address.

source

pub fn shutdown( &self, mode: ShutdownMode, ___deadline: Time ) -> Result<BaseNetworkSocketShutdownResult, Error>

Shuts down part of the socket.

source

pub fn set_ip_type_of_service( &self, value: u8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpTypeOfServiceResult, Error>

Set SOL_IP -> IP_TOS.

source

pub fn get_ip_type_of_service( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpTypeOfServiceResult, Error>

Get SOL_IP -> IP_TOS.

source

pub fn set_ip_ttl( &self, value: &OptionalUint8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpTtlResult, Error>

Set SOL_IP -> IP_TTL.

source

pub fn get_ip_ttl( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpTtlResult, Error>

Get SOL_IP -> IP_TTL.

source

pub fn set_ip_packet_info( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpPacketInfoResult, Error>

Set SOL_IP -> IP_PKTINFO.

source

pub fn get_ip_packet_info( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpPacketInfoResult, Error>

Get SOL_IP -> IP_PKTINFO.

source

pub fn set_ip_receive_type_of_service( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpReceiveTypeOfServiceResult, Error>

Set SOL_IP -> IP_RECVTOS.

source

pub fn get_ip_receive_type_of_service( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpReceiveTypeOfServiceResult, Error>

Get SOL_IP -> IP_RECVTOS.

source

pub fn set_ip_receive_ttl( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpReceiveTtlResult, Error>

Set SOL_IP -> IP_RECVTTL.

source

pub fn get_ip_receive_ttl( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpReceiveTtlResult, Error>

Get SOL_IP -> IP_RECVTTL.

source

pub fn set_ip_multicast_interface( &self, iface: u64, address: &Ipv4Address, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpMulticastInterfaceResult, Error>

Set SOL_IP -> IP_MULTICAST_IF.

source

pub fn get_ip_multicast_interface( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpMulticastInterfaceResult, Error>

Get SOL_IP -> IP_MULTICAST_IF.

source

pub fn set_ip_multicast_ttl( &self, value: &OptionalUint8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpMulticastTtlResult, Error>

Set SOL_IP -> IP_MULTICAST_TTL.

source

pub fn get_ip_multicast_ttl( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpMulticastTtlResult, Error>

Get SOL_IP -> IP_MULTICAST_TTL.

source

pub fn set_ip_multicast_loopback( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpMulticastLoopbackResult, Error>

Set SOL_IP -> IP_MULTICAST_LOOP.

source

pub fn get_ip_multicast_loopback( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpMulticastLoopbackResult, Error>

Get SOL_IP -> IP_MULTICAST_LOOP.

source

pub fn add_ip_membership( &self, membership: &IpMulticastMembership, ___deadline: Time ) -> Result<BaseNetworkSocketAddIpMembershipResult, Error>

Set SOL_IP -> IP_ADD_MEMBERSHIP

source

pub fn drop_ip_membership( &self, membership: &IpMulticastMembership, ___deadline: Time ) -> Result<BaseNetworkSocketDropIpMembershipResult, Error>

Set SOL_IP -> IP_DROP_MEMBERSHIP

source

pub fn set_ip_transparent( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpTransparentResult, Error>

Set SOL_IP -> IP_TRANSPARENT

source

pub fn get_ip_transparent( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpTransparentResult, Error>

Get SOL_IP -> IP_TRANSPARENT

source

pub fn set_ip_receive_original_destination_address( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpReceiveOriginalDestinationAddressResult, Error>

Set SOL_IP -> IP_RECVORIGDSTADDR

source

pub fn get_ip_receive_original_destination_address( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpReceiveOriginalDestinationAddressResult, Error>

Get SOL_IP -> IP_RECVORIGDSTADDR

source

pub fn add_ipv6_membership( &self, membership: &Ipv6MulticastMembership, ___deadline: Time ) -> Result<BaseNetworkSocketAddIpv6MembershipResult, Error>

Set SOL_IPV6 -> IPV6_ADD_MEMBERSHIP.

source

pub fn drop_ipv6_membership( &self, membership: &Ipv6MulticastMembership, ___deadline: Time ) -> Result<BaseNetworkSocketDropIpv6MembershipResult, Error>

Set SOL_IPV6 -> IPV6_DROP_MEMBERSHIP.

source

pub fn set_ipv6_multicast_interface( &self, value: u64, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6MulticastInterfaceResult, Error>

Set SOL_IPV6 -> IPV6_MULTICAST_IF.

source

pub fn get_ipv6_multicast_interface( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6MulticastInterfaceResult, Error>

Get SOL_IPV6 -> IPV6_MULTICAST_IF.

source

pub fn set_ipv6_unicast_hops( &self, value: &OptionalUint8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6UnicastHopsResult, Error>

Set SOL_IPV6 -> IPV6_UNICAST_HOPS.

source

pub fn get_ipv6_unicast_hops( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6UnicastHopsResult, Error>

Get SOL_IPV6 -> IPV6_UNICAST_HOPS.

source

pub fn set_ipv6_receive_hop_limit( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6ReceiveHopLimitResult, Error>

Set SOL_IPV6 -> IPV6_RECVHOPLIMIT.

source

pub fn get_ipv6_receive_hop_limit( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6ReceiveHopLimitResult, Error>

Get SOL_IPV6 -> IPV6_RECVHOPLIMIT.

source

pub fn set_ipv6_multicast_hops( &self, value: &OptionalUint8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6MulticastHopsResult, Error>

Set SOL_IPV6 -> IPV6_MULTICAST_HOPS.

source

pub fn get_ipv6_multicast_hops( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6MulticastHopsResult, Error>

Get SOL_IPV6 -> IPV6_MULTICAST_HOPS.

source

pub fn set_ipv6_multicast_loopback( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6MulticastLoopbackResult, Error>

Set SOL_IPV6 -> IPV6_MULTICAST_LOOP.

source

pub fn get_ipv6_multicast_loopback( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6MulticastLoopbackResult, Error>

Get SOL_IPV6 -> IPV6_MULTICAST_LOOP.

source

pub fn set_ipv6_only( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6OnlyResult, Error>

Set SOL_IPV6 -> IPV6_V6ONLY.

source

pub fn get_ipv6_only( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6OnlyResult, Error>

Get SOL_IPV6 -> IPV6_V6ONLY.

source

pub fn set_ipv6_receive_traffic_class( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, Error>

Set SOL_IPV6 -> IPV6_RECVTCLASS.

source

pub fn get_ipv6_receive_traffic_class( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, Error>

Get SOL_IPV6 -> IPV6_RECVTCLASS.

source

pub fn set_ipv6_traffic_class( &self, value: &OptionalUint8, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6TrafficClassResult, Error>

Set SOL_IPV6 -> IPV6_TCLASS

source

pub fn get_ipv6_traffic_class( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6TrafficClassResult, Error>

Get SOL_IPV6 -> IPV6_TCLASS.

source

pub fn set_ipv6_receive_packet_info( &self, value: bool, ___deadline: Time ) -> Result<BaseNetworkSocketSetIpv6ReceivePacketInfoResult, Error>

Set SOL_IPV6 -> IPV6_RECVPKTINFO.

source

pub fn get_ipv6_receive_packet_info( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetIpv6ReceivePacketInfoResult, Error>

Get SOL_IPV6 -> IPV6_RECVPKTINFO.

source

pub fn get_original_destination( &self, ___deadline: Time ) -> Result<BaseNetworkSocketGetOriginalDestinationResult, Error>

Get SOL_IP -> SO_ORIGINAL_DST.

source

pub fn get_info( &self, ___deadline: Time ) -> Result<BaseDatagramSocketGetInfoResult, Error>

Retrieves creation information from the socket.

  • response domain the socket’s associated domain.
  • response proto the socket’s associated protocol.
source

pub fn describe( &self, ___deadline: Time ) -> Result<DatagramSocketDescribeResponse, Error>

source

pub fn send_msg_preflight( &self, payload: &DatagramSocketSendMsgPreflightRequest, ___deadline: Time ) -> Result<DatagramSocketSendMsgPreflightResult, Error>

Validates that data can be sent.

  • request args the requested disposition of data to be sent.
  • response the constraints sent data must satisfy.
  • error the error code indicating the reason for validation failure.
source

pub fn recv_msg_postflight( &self, ___deadline: Time ) -> Result<DatagramSocketRecvMsgPostflightResult, Error>

Returns the set of requested control messages.

  • response the set of currently requested control messages.

Trait Implementations§

source§

impl Debug for DatagramSocketSynchronousProxy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl SynchronousProxy for DatagramSocketSynchronousProxy

§

type Proxy = DatagramSocketProxy

The async proxy for the same protocol.
§

type Protocol = DatagramSocketMarker

The protocol which this Proxy controls.
source§

fn from_channel(inner: Channel) -> Self

Create a proxy over the given channel.
source§

fn into_channel(self) -> Channel

Convert the proxy back into a channel.
source§

fn as_channel(&self) -> &Channel

Get a reference to the proxy’s underlying channel. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more