Struct WebSocketConfig

#[non_exhaustive]
pub struct WebSocketConfig { pub read_buffer_size: usize, pub write_buffer_size: usize, pub max_write_buffer_size: usize, pub max_message_size: Option<usize>, pub max_frame_size: Option<usize>, pub accept_unmasked_frames: bool, pub per_message_deflate: Option<PerMessageDeflateConfig>, }
Expand description

The configuration for WebSocket connection.

§Example


let conf = WebSocketConfig::default()
    .with_read_buffer_size(256 * 1024)
    .with_write_buffer_size(256 * 1024);

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§read_buffer_size: usize

Read buffer capacity. This buffer is eagerly allocated and used for receiving messages.

For high read load scenarios a larger buffer, e.g. 128 KiB, improves performance.

For scenarios where you expect a lot of connections and don’t need high read load performance a smaller buffer, e.g. 4 KiB, would be appropriate to lower total memory usage.

The default value is 128 KiB.

§write_buffer_size: usize

The target minimum size of the write buffer to reach before writing the data to the underlying stream. The default value is 128 KiB.

If set to 0 each message will be eagerly written to the underlying stream. It is often more optimal to allow them to buffer a little, hence the default value.

Note: flush will always fully write the buffer regardless.

§max_write_buffer_size: usize

The max size of the write buffer in bytes. Setting this can provide backpressure in the case the write buffer is filling up due to write errors. The default value is unlimited.

Note: The write buffer only builds up past write_buffer_size when writes to the underlying stream are failing. So the write buffer can not fill up if you are not observing write errors even if not flushing.

Note: Should always be at least write_buffer_size + 1 message and probably a little more depending on error handling strategy.

§max_message_size: Option<usize>

The maximum size of an incoming message. None means no size limit. The default value is 64 MiB 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 incoming message frame. None means no size limit. The limit is for frame payload NOT including the frame header. The default value is 16 MiB which should be reasonably big for all normal use-cases but small enough to prevent memory eating by a malicious user.

§accept_unmasked_frames: bool

When set to true, the server will accept and handle unmasked frames from the client. According to the RFC 6455, the server must close the connection to the client in such cases, however it seems like there are some popular libraries that are sending unmasked frames, ignoring the RFC. By default this option is set to false, i.e. according to RFC 6455.

§per_message_deflate: Option<PerMessageDeflateConfig>

Per-message-deflate configuration, specify it to enable per-message (de)compression using the Deflate algorithm as specified by RFC7692.

Implementations§

§

impl WebSocketConfig

pub fn with_read_buffer_size(self, read_buffer_size: usize) -> WebSocketConfig

pub fn set_read_buffer_size( &mut self, read_buffer_size: usize, ) -> &mut WebSocketConfig

pub fn with_write_buffer_size(self, write_buffer_size: usize) -> WebSocketConfig

pub fn set_write_buffer_size( &mut self, write_buffer_size: usize, ) -> &mut WebSocketConfig

pub fn with_max_write_buffer_size( self, max_write_buffer_size: usize, ) -> WebSocketConfig

pub fn set_max_write_buffer_size( &mut self, max_write_buffer_size: usize, ) -> &mut WebSocketConfig

pub fn maybe_with_max_message_size( self, max_message_size: Option<usize>, ) -> WebSocketConfig

pub fn maybe_set_max_message_size( &mut self, max_message_size: Option<usize>, ) -> &mut WebSocketConfig

pub fn with_max_message_size(self, max_message_size: usize) -> WebSocketConfig

pub fn set_max_message_size( &mut self, max_message_size: usize, ) -> &mut WebSocketConfig

pub fn without_max_message_size(self) -> WebSocketConfig

pub fn unset_max_message_size(&mut self) -> &mut WebSocketConfig

pub fn maybe_with_max_frame_size( self, max_frame_size: Option<usize>, ) -> WebSocketConfig

pub fn maybe_set_max_frame_size( &mut self, max_frame_size: Option<usize>, ) -> &mut WebSocketConfig

pub fn with_max_frame_size(self, max_frame_size: usize) -> WebSocketConfig

pub fn set_max_frame_size( &mut self, max_frame_size: usize, ) -> &mut WebSocketConfig

pub fn without_max_frame_size(self) -> WebSocketConfig

pub fn unset_max_frame_size(&mut self) -> &mut WebSocketConfig

pub fn with_accept_unmasked_frames( self, accept_unmasked_frames: bool, ) -> WebSocketConfig

pub fn set_accept_unmasked_frames( &mut self, accept_unmasked_frames: bool, ) -> &mut WebSocketConfig

pub fn with_per_message_deflate_default(self) -> WebSocketConfig

Set Self::per_message_deflate with the default config..

pub fn set_per_message_deflate_default(&mut self) -> &mut WebSocketConfig

Set Self::per_message_deflate with the default config..

pub fn maybe_with_per_message_deflate( self, per_message_deflate: Option<PerMessageDeflateConfig>, ) -> WebSocketConfig

pub fn maybe_set_per_message_deflate( &mut self, per_message_deflate: Option<PerMessageDeflateConfig>, ) -> &mut WebSocketConfig

pub fn with_per_message_deflate( self, per_message_deflate: PerMessageDeflateConfig, ) -> WebSocketConfig

pub fn set_per_message_deflate( &mut self, per_message_deflate: PerMessageDeflateConfig, ) -> &mut WebSocketConfig

pub fn without_per_message_deflate(self) -> WebSocketConfig

pub fn unset_per_message_deflate(&mut self) -> &mut WebSocketConfig

Trait Implementations§

§

impl Clone for WebSocketConfig

§

fn clone(&self) -> WebSocketConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for WebSocketConfig

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for WebSocketConfig

§

fn default() -> WebSocketConfig

Returns the “default value” for a type. Read more
§

impl Copy for WebSocketConfig

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
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

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

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
§

impl<T, U> RamaInto<U> for T
where U: RamaFrom<T>,

§

fn rama_into(self) -> U

§

impl<T, U> RamaInto<U> for T
where U: RamaFrom<T>,

§

fn rama_into(self) -> U

§

impl<T, U> RamaTryInto<U> for T
where U: RamaTryFrom<T>,

§

type Error = <U as RamaTryFrom<T>>::Error

§

fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>

§

impl<T, U> RamaTryInto<U> for T
where U: RamaTryFrom<T>,

§

type Error = <U as RamaTryFrom<T>>::Error

§

fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,