pub struct SocketConfiguration { /* private fields */ }
Implementations§
Source§impl SocketConfiguration
impl SocketConfiguration
Sourcepub fn recv_buffer_size(self, size: usize) -> Self
pub fn recv_buffer_size(self, size: usize) -> Self
Sets the receive buffer size for the socket (no effect on windows/ios).
Note: On Linux the kernel will double the value you specify.
For example, if you specify 16MB
, the kernel will configure the
socket to use 32MB
.
See: https://man7.org/linux/man-pages/man7/socket.7.html: SO_RCVBUF
Sourcepub fn send_buffer_size(self, size: usize) -> Self
pub fn send_buffer_size(self, size: usize) -> Self
Sets the send buffer size for the socket (no effect on windows/ios)
Note: On Linux the kernel will double the value you specify.
For example, if you specify 16MB
, the kernel will configure the
socket to use 32MB
.
See: https://man7.org/linux/man-pages/man7/socket.7.html: SO_SNDBUF
Sourcepub fn set_non_blocking(self, non_blocking: bool) -> Self
pub fn set_non_blocking(self, non_blocking: bool) -> Self
Configure the socket for non-blocking IO
Trait Implementations§
Source§impl Clone for SocketConfiguration
impl Clone for SocketConfiguration
Source§fn clone(&self) -> SocketConfiguration
fn clone(&self) -> SocketConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SocketConfiguration
impl Debug for SocketConfiguration
Source§impl Default for SocketConfiguration
impl Default for SocketConfiguration
Source§fn default() -> SocketConfiguration
fn default() -> SocketConfiguration
Returns the “default value” for a type. Read more
Source§impl From<SocketConfig> for SocketConfiguration
impl From<SocketConfig> for SocketConfiguration
Source§fn from(value: SocketConfig) -> Self
fn from(value: SocketConfig) -> Self
Converts to this type from the input type.
impl Copy for SocketConfiguration
Auto Trait Implementations§
impl Freeze for SocketConfiguration
impl RefUnwindSafe for SocketConfiguration
impl Send for SocketConfiguration
impl Sync for SocketConfiguration
impl Unpin for SocketConfiguration
impl UnwindSafe for SocketConfiguration
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more