pub struct WebSocketOptions {
pub ping_interval: Duration,
pub idle_timeout: Duration,
pub close_handshake_timeout: Duration,
pub incoming_queue_length: NonZeroUsize,
}Expand description
Configuration for WebSocket connections.
Fields§
§ping_interval: DurationInterval at which to send Ping frames.
We use pings for connection keep-alive.
Value must be smaller than idle_timeout.
Default: 15s
idle_timeout: DurationAmount of time after which an idle connection is closed.
A connection is considered idle if no data is received nor sent.
This includes Ping/Pong frames used for keep-alive.
Value must be greater than ping_interval.
Default: 30s
close_handshake_timeout: DurationFor how long to keep draining the incoming messages until a client close is received.
Default: 250ms
incoming_queue_length: NonZeroUsizeMaximum number of messages to queue for processing.
If this number is exceeded, the client is disconnected.
Default: 2048
Trait Implementations§
Source§impl Clone for WebSocketOptions
impl Clone for WebSocketOptions
Source§fn clone(&self) -> WebSocketOptions
fn clone(&self) -> WebSocketOptions
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 WebSocketOptions
impl Debug for WebSocketOptions
Source§impl Default for WebSocketOptions
impl Default for WebSocketOptions
Source§impl<'de> Deserialize<'de> for WebSocketOptions
impl<'de> Deserialize<'de> for WebSocketOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WebSocketOptions
impl PartialEq for WebSocketOptions
Source§impl Serialize for WebSocketOptions
impl Serialize for WebSocketOptions
impl Copy for WebSocketOptions
impl StructuralPartialEq for WebSocketOptions
Auto Trait Implementations§
impl Freeze for WebSocketOptions
impl RefUnwindSafe for WebSocketOptions
impl Send for WebSocketOptions
impl Sync for WebSocketOptions
impl Unpin for WebSocketOptions
impl UnwindSafe for WebSocketOptions
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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