Struct tungstenite::protocol::WebSocketConfig [−][src]
pub struct WebSocketConfig {
pub max_send_queue: Option<usize>,
pub max_message_size: Option<usize>,
pub max_frame_size: Option<usize>,
}The configuration for WebSocket connection.
Fields
max_send_queue: Option<usize>
The size of the send queue. You can use it to turn on/off the backpressure features. None
means here that the size of the queue is unlimited. The default value is the unlimited
queue.
max_message_size: Option<usize>
The maximum size of a message. None means no size limit. The default value is 64 megabytes
which should be reasonably big for all normal use-cases but small enough to prevent
memory eating by a malicious user.
max_frame_size: Option<usize>
The maximum size of a single message frame. None means no size limit. The limit is for
frame payload NOT including the frame header. The default value is 16 megabytes which should
be reasonably big for all normal use-cases but small enough to prevent memory eating
by a malicious user.
Trait Implementations
impl Debug for WebSocketConfig[src]
impl Debug for WebSocketConfigfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for WebSocketConfig[src]
impl Clone for WebSocketConfigfn clone(&self) -> WebSocketConfig[src]
fn clone(&self) -> WebSocketConfigReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for WebSocketConfig[src]
impl Copy for WebSocketConfigimpl Default for WebSocketConfig[src]
impl Default for WebSocketConfigAuto Trait Implementations
impl Send for WebSocketConfig
impl Send for WebSocketConfigimpl Sync for WebSocketConfig
impl Sync for WebSocketConfig