pub enum BaseDatagramSocketRequest {
Show 81 variants
Clone2 {
request: ServerEnd<CloneableMarker>,
control_handle: BaseDatagramSocketControlHandle,
},
Close {
responder: BaseDatagramSocketCloseResponder,
},
Query {
responder: BaseDatagramSocketQueryResponder,
},
SetReuseAddress {
value: bool,
responder: BaseDatagramSocketSetReuseAddressResponder,
},
GetReuseAddress {
responder: BaseDatagramSocketGetReuseAddressResponder,
},
GetError {
responder: BaseDatagramSocketGetErrorResponder,
},
SetBroadcast {
value: bool,
responder: BaseDatagramSocketSetBroadcastResponder,
},
GetBroadcast {
responder: BaseDatagramSocketGetBroadcastResponder,
},
SetSendBuffer {
value_bytes: u64,
responder: BaseDatagramSocketSetSendBufferResponder,
},
GetSendBuffer {
responder: BaseDatagramSocketGetSendBufferResponder,
},
SetReceiveBuffer {
value_bytes: u64,
responder: BaseDatagramSocketSetReceiveBufferResponder,
},
GetReceiveBuffer {
responder: BaseDatagramSocketGetReceiveBufferResponder,
},
SetKeepAlive {
value: bool,
responder: BaseDatagramSocketSetKeepAliveResponder,
},
GetKeepAlive {
responder: BaseDatagramSocketGetKeepAliveResponder,
},
SetOutOfBandInline {
value: bool,
responder: BaseDatagramSocketSetOutOfBandInlineResponder,
},
GetOutOfBandInline {
responder: BaseDatagramSocketGetOutOfBandInlineResponder,
},
SetNoCheck {
value: bool,
responder: BaseDatagramSocketSetNoCheckResponder,
},
GetNoCheck {
responder: BaseDatagramSocketGetNoCheckResponder,
},
SetLinger {
linger: bool,
length_secs: u32,
responder: BaseDatagramSocketSetLingerResponder,
},
GetLinger {
responder: BaseDatagramSocketGetLingerResponder,
},
SetReusePort {
value: bool,
responder: BaseDatagramSocketSetReusePortResponder,
},
GetReusePort {
responder: BaseDatagramSocketGetReusePortResponder,
},
GetAcceptConn {
responder: BaseDatagramSocketGetAcceptConnResponder,
},
SetBindToDevice {
value: String,
responder: BaseDatagramSocketSetBindToDeviceResponder,
},
GetBindToDevice {
responder: BaseDatagramSocketGetBindToDeviceResponder,
},
SetBindToInterfaceIndex {
value: u64,
responder: BaseDatagramSocketSetBindToInterfaceIndexResponder,
},
GetBindToInterfaceIndex {
responder: BaseDatagramSocketGetBindToInterfaceIndexResponder,
},
SetTimestamp {
value: TimestampOption,
responder: BaseDatagramSocketSetTimestampResponder,
},
GetTimestamp {
responder: BaseDatagramSocketGetTimestampResponder,
},
SetMark {
domain: MarkDomain,
mark: OptionalUint32,
responder: BaseDatagramSocketSetMarkResponder,
},
GetMark {
domain: MarkDomain,
responder: BaseDatagramSocketGetMarkResponder,
},
Bind {
addr: SocketAddress,
responder: BaseDatagramSocketBindResponder,
},
Connect {
addr: SocketAddress,
responder: BaseDatagramSocketConnectResponder,
},
Disconnect {
responder: BaseDatagramSocketDisconnectResponder,
},
GetSockName {
responder: BaseDatagramSocketGetSockNameResponder,
},
GetPeerName {
responder: BaseDatagramSocketGetPeerNameResponder,
},
Shutdown {
mode: ShutdownMode,
responder: BaseDatagramSocketShutdownResponder,
},
SetIpTypeOfService {
value: u8,
responder: BaseDatagramSocketSetIpTypeOfServiceResponder,
},
GetIpTypeOfService {
responder: BaseDatagramSocketGetIpTypeOfServiceResponder,
},
SetIpTtl {
value: OptionalUint8,
responder: BaseDatagramSocketSetIpTtlResponder,
},
GetIpTtl {
responder: BaseDatagramSocketGetIpTtlResponder,
},
SetIpPacketInfo {
value: bool,
responder: BaseDatagramSocketSetIpPacketInfoResponder,
},
GetIpPacketInfo {
responder: BaseDatagramSocketGetIpPacketInfoResponder,
},
SetIpReceiveTypeOfService {
value: bool,
responder: BaseDatagramSocketSetIpReceiveTypeOfServiceResponder,
},
GetIpReceiveTypeOfService {
responder: BaseDatagramSocketGetIpReceiveTypeOfServiceResponder,
},
SetIpReceiveTtl {
value: bool,
responder: BaseDatagramSocketSetIpReceiveTtlResponder,
},
GetIpReceiveTtl {
responder: BaseDatagramSocketGetIpReceiveTtlResponder,
},
SetIpMulticastInterface {
iface: u64,
address: Ipv4Address,
responder: BaseDatagramSocketSetIpMulticastInterfaceResponder,
},
GetIpMulticastInterface {
responder: BaseDatagramSocketGetIpMulticastInterfaceResponder,
},
SetIpMulticastTtl {
value: OptionalUint8,
responder: BaseDatagramSocketSetIpMulticastTtlResponder,
},
GetIpMulticastTtl {
responder: BaseDatagramSocketGetIpMulticastTtlResponder,
},
SetIpMulticastLoopback {
value: bool,
responder: BaseDatagramSocketSetIpMulticastLoopbackResponder,
},
GetIpMulticastLoopback {
responder: BaseDatagramSocketGetIpMulticastLoopbackResponder,
},
AddIpMembership {
membership: IpMulticastMembership,
responder: BaseDatagramSocketAddIpMembershipResponder,
},
DropIpMembership {
membership: IpMulticastMembership,
responder: BaseDatagramSocketDropIpMembershipResponder,
},
SetIpTransparent {
value: bool,
responder: BaseDatagramSocketSetIpTransparentResponder,
},
GetIpTransparent {
responder: BaseDatagramSocketGetIpTransparentResponder,
},
SetIpReceiveOriginalDestinationAddress {
value: bool,
responder: BaseDatagramSocketSetIpReceiveOriginalDestinationAddressResponder,
},
GetIpReceiveOriginalDestinationAddress {
responder: BaseDatagramSocketGetIpReceiveOriginalDestinationAddressResponder,
},
AddIpv6Membership {
membership: Ipv6MulticastMembership,
responder: BaseDatagramSocketAddIpv6MembershipResponder,
},
DropIpv6Membership {
membership: Ipv6MulticastMembership,
responder: BaseDatagramSocketDropIpv6MembershipResponder,
},
SetIpv6MulticastInterface {
value: u64,
responder: BaseDatagramSocketSetIpv6MulticastInterfaceResponder,
},
GetIpv6MulticastInterface {
responder: BaseDatagramSocketGetIpv6MulticastInterfaceResponder,
},
SetIpv6UnicastHops {
value: OptionalUint8,
responder: BaseDatagramSocketSetIpv6UnicastHopsResponder,
},
GetIpv6UnicastHops {
responder: BaseDatagramSocketGetIpv6UnicastHopsResponder,
},
SetIpv6ReceiveHopLimit {
value: bool,
responder: BaseDatagramSocketSetIpv6ReceiveHopLimitResponder,
},
GetIpv6ReceiveHopLimit {
responder: BaseDatagramSocketGetIpv6ReceiveHopLimitResponder,
},
SetIpv6MulticastHops {
value: OptionalUint8,
responder: BaseDatagramSocketSetIpv6MulticastHopsResponder,
},
GetIpv6MulticastHops {
responder: BaseDatagramSocketGetIpv6MulticastHopsResponder,
},
SetIpv6MulticastLoopback {
value: bool,
responder: BaseDatagramSocketSetIpv6MulticastLoopbackResponder,
},
GetIpv6MulticastLoopback {
responder: BaseDatagramSocketGetIpv6MulticastLoopbackResponder,
},
SetIpv6Only {
value: bool,
responder: BaseDatagramSocketSetIpv6OnlyResponder,
},
GetIpv6Only {
responder: BaseDatagramSocketGetIpv6OnlyResponder,
},
SetIpv6ReceiveTrafficClass {
value: bool,
responder: BaseDatagramSocketSetIpv6ReceiveTrafficClassResponder,
},
GetIpv6ReceiveTrafficClass {
responder: BaseDatagramSocketGetIpv6ReceiveTrafficClassResponder,
},
SetIpv6TrafficClass {
value: OptionalUint8,
responder: BaseDatagramSocketSetIpv6TrafficClassResponder,
},
GetIpv6TrafficClass {
responder: BaseDatagramSocketGetIpv6TrafficClassResponder,
},
SetIpv6ReceivePacketInfo {
value: bool,
responder: BaseDatagramSocketSetIpv6ReceivePacketInfoResponder,
},
GetIpv6ReceivePacketInfo {
responder: BaseDatagramSocketGetIpv6ReceivePacketInfoResponder,
},
GetOriginalDestination {
responder: BaseDatagramSocketGetOriginalDestinationResponder,
},
GetInfo {
responder: BaseDatagramSocketGetInfoResponder,
},
}
Expand description
Base protocol shared by all datagram sockets.
Complete implementations of a datagram socket should compose this protocol.
Variants§
Clone2
Close
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.
Fields
responder: BaseDatagramSocketCloseResponder
Query
Fields
responder: BaseDatagramSocketQueryResponder
SetReuseAddress
Set SOL_SOCKET
-> SO_REUSEADDR
.
GetReuseAddress
Get SOL_SOCKET
-> SO_REUSEADDR
.
Fields
responder: BaseDatagramSocketGetReuseAddressResponder
GetError
Get SOL_SOCKET
-> SO_ERROR
.
Returns the last error if there is an error set on the socket.
Fields
responder: BaseDatagramSocketGetErrorResponder
SetBroadcast
Set SOL_SOCKET
-> SO_BROADCAST
.
GetBroadcast
Get SOL_SOCKET
-> SO_BROADCAST
.
Fields
responder: BaseDatagramSocketGetBroadcastResponder
SetSendBuffer
Set SOL_SOCKET
-> SO_SNDBUF
.
GetSendBuffer
Get SOL_SOCKET
-> SO_SNDBUF
.
Fields
responder: BaseDatagramSocketGetSendBufferResponder
SetReceiveBuffer
Set SOL_SOCKET
-> SO_RCVBUF
.
GetReceiveBuffer
Get SOL_SOCKET
-> SO_RCVBUF
.
Fields
responder: BaseDatagramSocketGetReceiveBufferResponder
SetKeepAlive
Set SOL_SOCKET
-> SO_KEEPALIVE
.
GetKeepAlive
Get SOL_SOCKET
-> SO_KEEPALIVE
.
Fields
responder: BaseDatagramSocketGetKeepAliveResponder
SetOutOfBandInline
Set SOL_SOCKET
-> SO_OOBINLINE
.
GetOutOfBandInline
Get SOL_SOCKET
-> SO_OOBINLINE
.
Fields
SetNoCheck
Set SOL_SOCKET
-> SO_NO_CHECK
.
GetNoCheck
Get SOL_SOCKET
-> SO_NO_CHECK
.
Fields
responder: BaseDatagramSocketGetNoCheckResponder
SetLinger
Set SOL_SOCKET
-> SO_LINGER
.
GetLinger
Get SOL_SOCKET
-> SO_LINGER
.
Fields
responder: BaseDatagramSocketGetLingerResponder
SetReusePort
Set SOL_SOCKET
-> SO_REUSEPORT
.
GetReusePort
Get SOL_SOCKET
-> SO_REUSEPORT
.
Fields
responder: BaseDatagramSocketGetReusePortResponder
GetAcceptConn
Get SOL_SOCKET
-> SO_ACCEPTCONN
.
Fields
responder: BaseDatagramSocketGetAcceptConnResponder
SetBindToDevice
Set SOL_SOCKET
-> SO_BINDTODEVICE
.
GetBindToDevice
Get SOL_SOCKET
-> SO_BINDTODEVICE
.
Fields
responder: BaseDatagramSocketGetBindToDeviceResponder
SetBindToInterfaceIndex
Set SOL_SOCKET
-> SO_BINDTOIFINDEX
.
If value
is 0, this clears the bound interface.
GetBindToInterfaceIndex
Get SOL_SOCKET
-> SO_BINDTOIFINDEX
.
Fields
SetTimestamp
Set SOL_SOCKET
-> SO_TIMESTAMP
or SO_TIMESTAMPNS
.
GetTimestamp
Get SOL_SOCKET
-> SO_TIMESTAMP
or SO_TIMESTAMPNS
.
Fields
responder: BaseDatagramSocketGetTimestampResponder
SetMark
Like setting SOL_SOCKET
-> SO_MARK
. The major difference is that
unlike the standard SO_MARK, this API has multiple mark domains and each
mark can be set independently in each domain.
GetMark
Like getting SOL_SOCKET
-> SO_MARK
. The major difference is that
unlike the standard SO_MARK, this API has multiple mark domains and each
mark can be retrieved independently in each domain.
Bind
Sets the local address used for the socket.
Connect
Initiates a connection to a remote address.
Disconnect
Clears connection information from this socket.
Fields
responder: BaseDatagramSocketDisconnectResponder
GetSockName
Retrieves the local socket address.
Fields
responder: BaseDatagramSocketGetSockNameResponder
GetPeerName
Retrieves the remote socket address.
Fields
responder: BaseDatagramSocketGetPeerNameResponder
Shutdown
Shuts down part of the socket.
SetIpTypeOfService
Set SOL_IP
-> IP_TOS
.
GetIpTypeOfService
Get SOL_IP
-> IP_TOS
.
Fields
SetIpTtl
Set SOL_IP
-> IP_TTL
.
GetIpTtl
Get SOL_IP
-> IP_TTL
.
Fields
responder: BaseDatagramSocketGetIpTtlResponder
SetIpPacketInfo
Set SOL_IP
-> IP_PKTINFO
.
GetIpPacketInfo
Get SOL_IP
-> IP_PKTINFO
.
Fields
responder: BaseDatagramSocketGetIpPacketInfoResponder
SetIpReceiveTypeOfService
Set SOL_IP
-> IP_RECVTOS
.
GetIpReceiveTypeOfService
Get SOL_IP
-> IP_RECVTOS
.
Fields
SetIpReceiveTtl
Set SOL_IP
-> IP_RECVTTL
.
GetIpReceiveTtl
Get SOL_IP
-> IP_RECVTTL
.
Fields
responder: BaseDatagramSocketGetIpReceiveTtlResponder
SetIpMulticastInterface
Set SOL_IP
-> IP_MULTICAST_IF
.
Fields
address: Ipv4Address
GetIpMulticastInterface
Get SOL_IP
-> IP_MULTICAST_IF
.
Fields
SetIpMulticastTtl
Set SOL_IP
-> IP_MULTICAST_TTL
.
GetIpMulticastTtl
Get SOL_IP
-> IP_MULTICAST_TTL
.
Fields
SetIpMulticastLoopback
Set SOL_IP
-> IP_MULTICAST_LOOP
.
GetIpMulticastLoopback
Get SOL_IP
-> IP_MULTICAST_LOOP
.
Fields
AddIpMembership
Set SOL_IP
-> IP_ADD_MEMBERSHIP
DropIpMembership
Set SOL_IP
-> IP_DROP_MEMBERSHIP
SetIpTransparent
Set SOL_IP
-> IP_TRANSPARENT
GetIpTransparent
Get SOL_IP
-> IP_TRANSPARENT
Fields
responder: BaseDatagramSocketGetIpTransparentResponder
SetIpReceiveOriginalDestinationAddress
Set SOL_IP
-> IP_RECVORIGDSTADDR
GetIpReceiveOriginalDestinationAddress
Get SOL_IP
-> IP_RECVORIGDSTADDR
Fields
AddIpv6Membership
Set SOL_IPV6
-> IPV6_ADD_MEMBERSHIP
.
DropIpv6Membership
Set SOL_IPV6
-> IPV6_DROP_MEMBERSHIP
.
SetIpv6MulticastInterface
Set SOL_IPV6
-> IPV6_MULTICAST_IF
.
GetIpv6MulticastInterface
Get SOL_IPV6
-> IPV6_MULTICAST_IF
.
Fields
SetIpv6UnicastHops
Set SOL_IPV6
-> IPV6_UNICAST_HOPS
.
GetIpv6UnicastHops
Get SOL_IPV6
-> IPV6_UNICAST_HOPS
.
Fields
SetIpv6ReceiveHopLimit
Set SOL_IPV6
-> IPV6_RECVHOPLIMIT
.
GetIpv6ReceiveHopLimit
Get SOL_IPV6
-> IPV6_RECVHOPLIMIT
.
Fields
SetIpv6MulticastHops
Set SOL_IPV6
-> IPV6_MULTICAST_HOPS
.
GetIpv6MulticastHops
Get SOL_IPV6
-> IPV6_MULTICAST_HOPS
.
Fields
SetIpv6MulticastLoopback
Set SOL_IPV6
-> IPV6_MULTICAST_LOOP
.
GetIpv6MulticastLoopback
Get SOL_IPV6
-> IPV6_MULTICAST_LOOP
.
Fields
SetIpv6Only
Set SOL_IPV6
-> IPV6_V6ONLY
.
GetIpv6Only
Get SOL_IPV6
-> IPV6_V6ONLY
.
Fields
responder: BaseDatagramSocketGetIpv6OnlyResponder
SetIpv6ReceiveTrafficClass
Set SOL_IPV6
-> IPV6_RECVTCLASS
.
GetIpv6ReceiveTrafficClass
Get SOL_IPV6
-> IPV6_RECVTCLASS
.
Fields
SetIpv6TrafficClass
Set SOL_IPV6
-> IPV6_TCLASS
GetIpv6TrafficClass
Get SOL_IPV6
-> IPV6_TCLASS
.
Fields
SetIpv6ReceivePacketInfo
Set SOL_IPV6
-> IPV6_RECVPKTINFO
.
GetIpv6ReceivePacketInfo
Get SOL_IPV6
-> IPV6_RECVPKTINFO
.
Fields
GetOriginalDestination
Get SOL_IP
-> SO_ORIGINAL_DST
.
Fields
GetInfo
Retrieves creation information from the socket.
- response
domain
the socket’s associated domain. - response
proto
the socket’s associated protocol.
Fields
responder: BaseDatagramSocketGetInfoResponder
Implementations§
Source§impl BaseDatagramSocketRequest
impl BaseDatagramSocketRequest
pub fn into_clone2( self, ) -> Option<(ServerEnd<CloneableMarker>, BaseDatagramSocketControlHandle)>
pub fn into_close(self) -> Option<BaseDatagramSocketCloseResponder>
pub fn into_query(self) -> Option<BaseDatagramSocketQueryResponder>
pub fn into_set_reuse_address( self, ) -> Option<(bool, BaseDatagramSocketSetReuseAddressResponder)>
pub fn into_get_reuse_address( self, ) -> Option<BaseDatagramSocketGetReuseAddressResponder>
pub fn into_get_error(self) -> Option<BaseDatagramSocketGetErrorResponder>
pub fn into_set_broadcast( self, ) -> Option<(bool, BaseDatagramSocketSetBroadcastResponder)>
pub fn into_get_broadcast( self, ) -> Option<BaseDatagramSocketGetBroadcastResponder>
pub fn into_set_send_buffer( self, ) -> Option<(u64, BaseDatagramSocketSetSendBufferResponder)>
pub fn into_get_send_buffer( self, ) -> Option<BaseDatagramSocketGetSendBufferResponder>
pub fn into_set_receive_buffer( self, ) -> Option<(u64, BaseDatagramSocketSetReceiveBufferResponder)>
pub fn into_get_receive_buffer( self, ) -> Option<BaseDatagramSocketGetReceiveBufferResponder>
pub fn into_set_keep_alive( self, ) -> Option<(bool, BaseDatagramSocketSetKeepAliveResponder)>
pub fn into_get_keep_alive( self, ) -> Option<BaseDatagramSocketGetKeepAliveResponder>
pub fn into_set_out_of_band_inline( self, ) -> Option<(bool, BaseDatagramSocketSetOutOfBandInlineResponder)>
pub fn into_get_out_of_band_inline( self, ) -> Option<BaseDatagramSocketGetOutOfBandInlineResponder>
pub fn into_set_no_check( self, ) -> Option<(bool, BaseDatagramSocketSetNoCheckResponder)>
pub fn into_get_no_check(self) -> Option<BaseDatagramSocketGetNoCheckResponder>
pub fn into_set_linger( self, ) -> Option<(bool, u32, BaseDatagramSocketSetLingerResponder)>
pub fn into_get_linger(self) -> Option<BaseDatagramSocketGetLingerResponder>
pub fn into_set_reuse_port( self, ) -> Option<(bool, BaseDatagramSocketSetReusePortResponder)>
pub fn into_get_reuse_port( self, ) -> Option<BaseDatagramSocketGetReusePortResponder>
pub fn into_get_accept_conn( self, ) -> Option<BaseDatagramSocketGetAcceptConnResponder>
pub fn into_set_bind_to_device( self, ) -> Option<(String, BaseDatagramSocketSetBindToDeviceResponder)>
pub fn into_get_bind_to_device( self, ) -> Option<BaseDatagramSocketGetBindToDeviceResponder>
pub fn into_set_bind_to_interface_index( self, ) -> Option<(u64, BaseDatagramSocketSetBindToInterfaceIndexResponder)>
pub fn into_get_bind_to_interface_index( self, ) -> Option<BaseDatagramSocketGetBindToInterfaceIndexResponder>
pub fn into_set_timestamp( self, ) -> Option<(TimestampOption, BaseDatagramSocketSetTimestampResponder)>
pub fn into_get_timestamp( self, ) -> Option<BaseDatagramSocketGetTimestampResponder>
pub fn into_set_mark( self, ) -> Option<(MarkDomain, OptionalUint32, BaseDatagramSocketSetMarkResponder)>
pub fn into_get_mark( self, ) -> Option<(MarkDomain, BaseDatagramSocketGetMarkResponder)>
pub fn into_bind( self, ) -> Option<(SocketAddress, BaseDatagramSocketBindResponder)>
pub fn into_connect( self, ) -> Option<(SocketAddress, BaseDatagramSocketConnectResponder)>
pub fn into_disconnect(self) -> Option<BaseDatagramSocketDisconnectResponder>
pub fn into_get_sock_name( self, ) -> Option<BaseDatagramSocketGetSockNameResponder>
pub fn into_get_peer_name( self, ) -> Option<BaseDatagramSocketGetPeerNameResponder>
pub fn into_shutdown( self, ) -> Option<(ShutdownMode, BaseDatagramSocketShutdownResponder)>
pub fn into_set_ip_type_of_service( self, ) -> Option<(u8, BaseDatagramSocketSetIpTypeOfServiceResponder)>
pub fn into_get_ip_type_of_service( self, ) -> Option<BaseDatagramSocketGetIpTypeOfServiceResponder>
pub fn into_set_ip_ttl( self, ) -> Option<(OptionalUint8, BaseDatagramSocketSetIpTtlResponder)>
pub fn into_get_ip_ttl(self) -> Option<BaseDatagramSocketGetIpTtlResponder>
pub fn into_set_ip_packet_info( self, ) -> Option<(bool, BaseDatagramSocketSetIpPacketInfoResponder)>
pub fn into_get_ip_packet_info( self, ) -> Option<BaseDatagramSocketGetIpPacketInfoResponder>
pub fn into_set_ip_receive_type_of_service( self, ) -> Option<(bool, BaseDatagramSocketSetIpReceiveTypeOfServiceResponder)>
pub fn into_get_ip_receive_type_of_service( self, ) -> Option<BaseDatagramSocketGetIpReceiveTypeOfServiceResponder>
pub fn into_set_ip_receive_ttl( self, ) -> Option<(bool, BaseDatagramSocketSetIpReceiveTtlResponder)>
pub fn into_get_ip_receive_ttl( self, ) -> Option<BaseDatagramSocketGetIpReceiveTtlResponder>
pub fn into_set_ip_multicast_interface( self, ) -> Option<(u64, Ipv4Address, BaseDatagramSocketSetIpMulticastInterfaceResponder)>
pub fn into_get_ip_multicast_interface( self, ) -> Option<BaseDatagramSocketGetIpMulticastInterfaceResponder>
pub fn into_set_ip_multicast_ttl( self, ) -> Option<(OptionalUint8, BaseDatagramSocketSetIpMulticastTtlResponder)>
pub fn into_get_ip_multicast_ttl( self, ) -> Option<BaseDatagramSocketGetIpMulticastTtlResponder>
pub fn into_set_ip_multicast_loopback( self, ) -> Option<(bool, BaseDatagramSocketSetIpMulticastLoopbackResponder)>
pub fn into_get_ip_multicast_loopback( self, ) -> Option<BaseDatagramSocketGetIpMulticastLoopbackResponder>
pub fn into_add_ip_membership( self, ) -> Option<(IpMulticastMembership, BaseDatagramSocketAddIpMembershipResponder)>
pub fn into_drop_ip_membership( self, ) -> Option<(IpMulticastMembership, BaseDatagramSocketDropIpMembershipResponder)>
pub fn into_set_ip_transparent( self, ) -> Option<(bool, BaseDatagramSocketSetIpTransparentResponder)>
pub fn into_get_ip_transparent( self, ) -> Option<BaseDatagramSocketGetIpTransparentResponder>
pub fn into_set_ip_receive_original_destination_address( self, ) -> Option<(bool, BaseDatagramSocketSetIpReceiveOriginalDestinationAddressResponder)>
pub fn into_get_ip_receive_original_destination_address( self, ) -> Option<BaseDatagramSocketGetIpReceiveOriginalDestinationAddressResponder>
pub fn into_add_ipv6_membership( self, ) -> Option<(Ipv6MulticastMembership, BaseDatagramSocketAddIpv6MembershipResponder)>
pub fn into_drop_ipv6_membership( self, ) -> Option<(Ipv6MulticastMembership, BaseDatagramSocketDropIpv6MembershipResponder)>
pub fn into_set_ipv6_multicast_interface( self, ) -> Option<(u64, BaseDatagramSocketSetIpv6MulticastInterfaceResponder)>
pub fn into_get_ipv6_multicast_interface( self, ) -> Option<BaseDatagramSocketGetIpv6MulticastInterfaceResponder>
pub fn into_set_ipv6_unicast_hops( self, ) -> Option<(OptionalUint8, BaseDatagramSocketSetIpv6UnicastHopsResponder)>
pub fn into_get_ipv6_unicast_hops( self, ) -> Option<BaseDatagramSocketGetIpv6UnicastHopsResponder>
pub fn into_set_ipv6_receive_hop_limit( self, ) -> Option<(bool, BaseDatagramSocketSetIpv6ReceiveHopLimitResponder)>
pub fn into_get_ipv6_receive_hop_limit( self, ) -> Option<BaseDatagramSocketGetIpv6ReceiveHopLimitResponder>
pub fn into_set_ipv6_multicast_hops( self, ) -> Option<(OptionalUint8, BaseDatagramSocketSetIpv6MulticastHopsResponder)>
pub fn into_get_ipv6_multicast_hops( self, ) -> Option<BaseDatagramSocketGetIpv6MulticastHopsResponder>
pub fn into_set_ipv6_multicast_loopback( self, ) -> Option<(bool, BaseDatagramSocketSetIpv6MulticastLoopbackResponder)>
pub fn into_get_ipv6_multicast_loopback( self, ) -> Option<BaseDatagramSocketGetIpv6MulticastLoopbackResponder>
pub fn into_set_ipv6_only( self, ) -> Option<(bool, BaseDatagramSocketSetIpv6OnlyResponder)>
pub fn into_get_ipv6_only( self, ) -> Option<BaseDatagramSocketGetIpv6OnlyResponder>
pub fn into_set_ipv6_receive_traffic_class( self, ) -> Option<(bool, BaseDatagramSocketSetIpv6ReceiveTrafficClassResponder)>
pub fn into_get_ipv6_receive_traffic_class( self, ) -> Option<BaseDatagramSocketGetIpv6ReceiveTrafficClassResponder>
pub fn into_set_ipv6_traffic_class( self, ) -> Option<(OptionalUint8, BaseDatagramSocketSetIpv6TrafficClassResponder)>
pub fn into_get_ipv6_traffic_class( self, ) -> Option<BaseDatagramSocketGetIpv6TrafficClassResponder>
pub fn into_set_ipv6_receive_packet_info( self, ) -> Option<(bool, BaseDatagramSocketSetIpv6ReceivePacketInfoResponder)>
pub fn into_get_ipv6_receive_packet_info( self, ) -> Option<BaseDatagramSocketGetIpv6ReceivePacketInfoResponder>
pub fn into_get_original_destination( self, ) -> Option<BaseDatagramSocketGetOriginalDestinationResponder>
pub fn into_get_info(self) -> Option<BaseDatagramSocketGetInfoResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL