Skip to main content

SocketOptions

Enum SocketOptions 

Source
pub enum SocketOptions {
    Tcp(TcpSockOpts),
    Udp(UdpSockOpts),
}
Expand description

Socket Options

Variants§

§

Tcp(TcpSockOpts)

§

Udp(UdpSockOpts)

Implementations§

Source§

impl SocketOptions

Implementation to create Socket Option configuration

Source

pub fn join_multicast_v4(addr: Ipv4Addr) -> Self

Set the socket option to join an IPv4 multicast group.

§Arguments
  • addr - The IPv4 multicast address to join.
§Returns
  • SocketOption::Udp(UdpSockOpts::JoinMulticast - The configured socket option.
Source

pub fn leave_multicast_v4(addr: Ipv4Addr) -> Self

Set the socket option to leave an IPv4 multicast group.

§Arguments
  • addr - The IPv4 multicast address to leave.
§Returns
  • SocketOption::Udp(UdpSockOpts::LeaveMulticast - The configured socket option.
Source

pub fn set_udp_send_callback(status: bool) -> Self

Set the socket option to enable or disable the UDP send callback.

§Arguments
  • status - Whether to enable (true) or disable (false) the UDP send callback.
§Returns
  • SocketOption::Udp(UdpSockOpts::SetUdpSendCallback - The configured socket option.
Source

pub fn set_udp_receive_timeout(timeout: u32) -> Self

Set a socket option to configure the UDP socket receive timeout.

§Arguments
  • timeout - Timeout duration in milliseconds.
§Returns
  • SocketOption::Udp(UdpSockOpts::ReceiveTimeout - The configured socket option.
Source

pub fn set_tcp_receive_timeout(timeout: u32) -> Self

Set a socket option to configure the TCP socket receive timeout.

§Arguments
  • timeout - Timeout duration in milliseconds.
§Returns
  • SocketOption::Tcp(TcpSockOpts::ReceiveTimeout) - The configured socket option.

Trait Implementations§

Source§

impl Eq for SocketOptions

Source§

impl PartialEq for SocketOptions

Source§

fn eq(&self, other: &SocketOptions) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for SocketOptions

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
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

Source§

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

Source§

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>,

Source§

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.