pub enum BaseDatagramSocketRequest {
Show 72 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,
},
SetTimestamp {
value: TimestampOption,
responder: BaseDatagramSocketSetTimestampResponder,
},
GetTimestamp {
responder: BaseDatagramSocketGetTimestampResponder,
},
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,
},
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,
},
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
Fields
responder: BaseDatagramSocketCloseResponder
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.
Query
Fields
responder: BaseDatagramSocketQueryResponder
SetReuseAddress
Set SOL_SOCKET
-> SO_REUSEADDR
.
GetReuseAddress
Fields
responder: BaseDatagramSocketGetReuseAddressResponder
Get SOL_SOCKET
-> SO_REUSEADDR
.
GetError
Fields
responder: BaseDatagramSocketGetErrorResponder
Get SOL_SOCKET
-> SO_ERROR
.
Returns the last error if there is an error set on the socket.
SetBroadcast
Set SOL_SOCKET
-> SO_BROADCAST
.
GetBroadcast
Fields
responder: BaseDatagramSocketGetBroadcastResponder
Get SOL_SOCKET
-> SO_BROADCAST
.
SetSendBuffer
Set SOL_SOCKET
-> SO_SNDBUF
.
GetSendBuffer
Fields
responder: BaseDatagramSocketGetSendBufferResponder
Get SOL_SOCKET
-> SO_SNDBUF
.
SetReceiveBuffer
Set SOL_SOCKET
-> SO_RCVBUF
.
GetReceiveBuffer
Fields
responder: BaseDatagramSocketGetReceiveBufferResponder
Get SOL_SOCKET
-> SO_RCVBUF
.
SetKeepAlive
Set SOL_SOCKET
-> SO_KEEPALIVE
.
GetKeepAlive
Fields
responder: BaseDatagramSocketGetKeepAliveResponder
Get SOL_SOCKET
-> SO_KEEPALIVE
.
SetOutOfBandInline
Set SOL_SOCKET
-> SO_OOBINLINE
.
GetOutOfBandInline
Fields
Get SOL_SOCKET
-> SO_OOBINLINE
.
SetNoCheck
Set SOL_SOCKET
-> SO_NO_CHECK
.
GetNoCheck
Fields
responder: BaseDatagramSocketGetNoCheckResponder
Get SOL_SOCKET
-> SO_NO_CHECK
.
SetLinger
Set SOL_SOCKET
-> SO_LINGER
.
GetLinger
Fields
responder: BaseDatagramSocketGetLingerResponder
Get SOL_SOCKET
-> SO_LINGER
.
SetReusePort
Set SOL_SOCKET
-> SO_REUSEPORT
.
GetReusePort
Fields
responder: BaseDatagramSocketGetReusePortResponder
Get SOL_SOCKET
-> SO_REUSEPORT
.
GetAcceptConn
Fields
responder: BaseDatagramSocketGetAcceptConnResponder
Get SOL_SOCKET
-> SO_ACCEPTCONN
.
SetBindToDevice
Set SOL_SOCKET
-> SO_BINDTODEVICE
.
GetBindToDevice
Fields
responder: BaseDatagramSocketGetBindToDeviceResponder
Get SOL_SOCKET
-> SO_BINDTODEVICE
.
SetTimestamp
Set SOL_SOCKET
-> SO_TIMESTAMP
or SO_TIMESTAMPNS
.
GetTimestamp
Fields
responder: BaseDatagramSocketGetTimestampResponder
Get SOL_SOCKET
-> SO_TIMESTAMP
or SO_TIMESTAMPNS
.
Bind
Sets the local address used for the socket.
Connect
Initiates a connection to a remote address.
Disconnect
Fields
responder: BaseDatagramSocketDisconnectResponder
Clears connection information from this socket.
GetSockName
Fields
responder: BaseDatagramSocketGetSockNameResponder
Retrieves the local socket address.
GetPeerName
Fields
responder: BaseDatagramSocketGetPeerNameResponder
Retrieves the remote socket address.
Shutdown
Shuts down part of the socket.
SetIpTypeOfService
Set SOL_IP
-> IP_TOS
.
GetIpTypeOfService
Fields
Get SOL_IP
-> IP_TOS
.
SetIpTtl
Set SOL_IP
-> IP_TTL
.
GetIpTtl
Fields
responder: BaseDatagramSocketGetIpTtlResponder
Get SOL_IP
-> IP_TTL
.
SetIpPacketInfo
Set SOL_IP
-> IP_PKTINFO
.
GetIpPacketInfo
Fields
responder: BaseDatagramSocketGetIpPacketInfoResponder
Get SOL_IP
-> IP_PKTINFO
.
SetIpReceiveTypeOfService
Set SOL_IP
-> IP_RECVTOS
.
GetIpReceiveTypeOfService
Fields
Get SOL_IP
-> IP_RECVTOS
.
SetIpReceiveTtl
Set SOL_IP
-> IP_RECVTTL
.
GetIpReceiveTtl
Fields
responder: BaseDatagramSocketGetIpReceiveTtlResponder
Get SOL_IP
-> IP_RECVTTL
.
SetIpMulticastInterface
Fields
address: Ipv4Address
Set SOL_IP
-> IP_MULTICAST_IF
.
GetIpMulticastInterface
Fields
Get SOL_IP
-> IP_MULTICAST_IF
.
SetIpMulticastTtl
Set SOL_IP
-> IP_MULTICAST_TTL
.
GetIpMulticastTtl
Fields
Get SOL_IP
-> IP_MULTICAST_TTL
.
SetIpMulticastLoopback
Set SOL_IP
-> IP_MULTICAST_LOOP
.
GetIpMulticastLoopback
Fields
Get SOL_IP
-> IP_MULTICAST_LOOP
.
AddIpMembership
Set SOL_IP
-> IP_ADD_MEMBERSHIP
DropIpMembership
Set SOL_IP
-> IP_DROP_MEMBERSHIP
AddIpv6Membership
Set SOL_IPV6
-> IPV6_ADD_MEMBERSHIP
.
DropIpv6Membership
Set SOL_IPV6
-> IPV6_DROP_MEMBERSHIP
.
SetIpv6MulticastInterface
Set SOL_IPV6
-> IPV6_MULTICAST_IF
.
GetIpv6MulticastInterface
Fields
Get SOL_IPV6
-> IPV6_MULTICAST_IF
.
SetIpv6UnicastHops
Set SOL_IPV6
-> IPV6_UNICAST_HOPS
.
GetIpv6UnicastHops
Fields
Get SOL_IPV6
-> IPV6_UNICAST_HOPS
.
SetIpv6ReceiveHopLimit
Set SOL_IPV6
-> IPV6_RECVHOPLIMIT
.
GetIpv6ReceiveHopLimit
Fields
Get SOL_IPV6
-> IPV6_RECVHOPLIMIT
.
SetIpv6MulticastHops
Set SOL_IPV6
-> IPV6_MULTICAST_HOPS
.
GetIpv6MulticastHops
Fields
Get SOL_IPV6
-> IPV6_MULTICAST_HOPS
.
SetIpv6MulticastLoopback
Set SOL_IPV6
-> IPV6_MULTICAST_LOOP
.
GetIpv6MulticastLoopback
Fields
Get SOL_IPV6
-> IPV6_MULTICAST_LOOP
.
SetIpv6Only
Set SOL_IPV6
-> IPV6_V6ONLY
.
GetIpv6Only
Fields
responder: BaseDatagramSocketGetIpv6OnlyResponder
Get SOL_IPV6
-> IPV6_V6ONLY
.
SetIpv6ReceiveTrafficClass
Set SOL_IPV6
-> IPV6_RECVTCLASS
.
GetIpv6ReceiveTrafficClass
Fields
Get SOL_IPV6
-> IPV6_RECVTCLASS
.
SetIpv6TrafficClass
Set SOL_IPV6
-> IPV6_TCLASS
GetIpv6TrafficClass
Fields
Get SOL_IPV6
-> IPV6_TCLASS
.
SetIpv6ReceivePacketInfo
Set SOL_IPV6
-> IPV6_RECVPKTINFO
.
GetIpv6ReceivePacketInfo
Fields
Get SOL_IPV6
-> IPV6_RECVPKTINFO
.
GetInfo
Fields
responder: BaseDatagramSocketGetInfoResponder
Retrieves creation information from the socket.
- response
domain
the socket’s associated domain. - response
proto
the socket’s associated protocol.
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_timestamp( self ) -> Option<(TimestampOption, BaseDatagramSocketSetTimestampResponder)>
pub fn into_get_timestamp( self ) -> Option<BaseDatagramSocketGetTimestampResponder>
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_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_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