Skip to main content

WebSocketUpgrade

Struct WebSocketUpgrade 

Source
pub struct WebSocketUpgrade<F = DefaultOnFailedUpgrade> { /* private fields */ }
Available on crate feature fullstack only.
Expand description

Extractor for establishing WebSocket connections.

For HTTP/1.1 requests, this extractor requires the request method to be GET; in later versions, CONNECT is used instead. To support both, it should be used with any.

See the module docs for an example.

Implementations§

Source§

impl<F> WebSocketUpgrade<F>

Source

pub fn read_buffer_size(self, size: usize) -> WebSocketUpgrade<F>

Available on crate feature ws only.

Read buffer capacity. The default value is 128KiB

Source

pub fn write_buffer_size(self, size: usize) -> WebSocketUpgrade<F>

Available on crate feature ws only.

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.

Source

pub fn max_write_buffer_size(self, max: usize) -> WebSocketUpgrade<F>

Available on crate feature ws only.

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.

Source

pub fn max_message_size(self, max: usize) -> WebSocketUpgrade<F>

Available on crate feature ws only.

Set the maximum message size (defaults to 64 megabytes)

Source

pub fn max_frame_size(self, max: usize) -> WebSocketUpgrade<F>

Available on crate feature ws only.

Set the maximum frame size (defaults to 16 megabytes)

Source

pub fn accept_unmasked_frames(self, accept: bool) -> WebSocketUpgrade<F>

Available on crate feature ws only.

Allow server to accept unmasked frames (defaults to false)

Source

pub fn protocols<I>(self, protocols: I) -> WebSocketUpgrade<F>
where I: IntoIterator, <I as IntoIterator>::Item: Into<Cow<'static, str>>,

Available on crate feature ws only.

Set the known protocols.

If the protocol name specified by Sec-WebSocket-Protocol header to match any of them, the upgrade response will include Sec-WebSocket-Protocol header and return the protocol name.

The protocols should be listed in decreasing order of preference: if the client offers multiple protocols that the server could support, the server will pick the first one in this list.

§Examples
use axum::{
    extract::ws::{WebSocketUpgrade, WebSocket},
    routing::any,
    response::{IntoResponse, Response},
    Router,
};

let app = Router::new().route("/ws", any(handler));

async fn handler(ws: WebSocketUpgrade) -> Response {
    ws.protocols(["graphql-ws", "graphql-transport-ws"])
        .on_upgrade(|socket| async {
            // ...
        })
}
Source

pub fn requested_protocols(&self) -> impl Iterator<Item = &HeaderValue>

Available on crate feature ws only.

Return the WebSocket subprotocols requested by the client.

§Examples

If the client sends the following HTTP header in the WebSocket upgrade request:

Sec-WebSocket-Protocol: soap, wamp

this method returns an iterator yielding "soap" and "wamp".

Source

pub fn set_selected_protocol(&mut self, protocol: HeaderValue)

Available on crate feature ws only.

Set the chosen WebSocket subprotocol.

Another method, protocols(), also sets the chosen WebSocket subprotocol. If both methods are called, only the latter call takes effect.

§Notes
  • The chosen protocol is echoed back in the WebSocket upgrade response as required by RFC 6455. Some browsers may reject a value that was not present in the client’s request.
Source

pub fn selected_protocol(&self) -> Option<&HeaderValue>

Available on crate feature ws only.

Return the selected WebSocket subprotocol, if one has been chosen.

If protocols() selects a matching protocol, or set_selected_protocol() has been called, the return value will be Some containing the selected protocol. Otherwise, it will be None.

Source

pub fn on_failed_upgrade<C>(self, callback: C) -> WebSocketUpgrade<C>
where C: OnFailedUpgrade,

Available on crate feature ws only.

Provide a callback to call if upgrading the connection fails.

The connection upgrade is performed in a background task. If that fails this callback will be called.

By default any errors will be silently ignored.

§Example
use axum::{
    extract::{WebSocketUpgrade},
    response::Response,
};

async fn handler(ws: WebSocketUpgrade) -> Response {
    ws.on_failed_upgrade(|error| {
        report_error(error);
    })
    .on_upgrade(|socket| async { /* ... */ })
}
Source

pub fn on_upgrade<C, Fut>(self, callback: C) -> Response<Body>
where C: FnOnce(WebSocket) -> Fut + Send + 'static, Fut: Future<Output = ()> + Send + 'static, F: OnFailedUpgrade,

Available on crate feature ws only.

Finalize upgrading the connection and call the provided callback with the stream.

Trait Implementations§

Source§

impl<F> Debug for WebSocketUpgrade<F>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<S> FromRequestParts<S> for WebSocketUpgrade
where S: Send + Sync,

Source§

type Rejection = WebSocketUpgradeRejection

If the extractor fails it’ll use this “rejection” type. A rejection is a kind of error that can be converted into a response.
Source§

async fn from_request_parts( parts: &mut Parts, _state: &S, ) -> Result<WebSocketUpgrade, <WebSocketUpgrade as FromRequestParts<S>>::Rejection>

Perform the extraction.

Auto Trait Implementations§

§

impl<F = DefaultOnFailedUpgrade> !Freeze for WebSocketUpgrade<F>

§

impl<F> RefUnwindSafe for WebSocketUpgrade<F>
where F: RefUnwindSafe,

§

impl<F> Send for WebSocketUpgrade<F>
where F: Send,

§

impl<F> Sync for WebSocketUpgrade<F>
where F: Sync,

§

impl<F> Unpin for WebSocketUpgrade<F>
where F: Unpin,

§

impl<F> UnsafeUnpin for WebSocketUpgrade<F>
where F: UnsafeUnpin,

§

impl<F> UnwindSafe for WebSocketUpgrade<F>
where F: UnwindSafe,

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<S, T> FromRequest<S, ViaParts> for T
where S: Send + Sync, T: FromRequestParts<S>,

Source§

type Rejection = <T as FromRequestParts<S>>::Rejection

If the extractor fails it’ll use this “rejection” type. A rejection is a kind of error that can be converted into a response.
Source§

fn from_request( req: Request<Body>, state: &S, ) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>

Perform the extraction.
Source§

impl<T> InitializeFromFunction<T> for T

Source§

fn initialize_from_function(f: fn() -> T) -> T

Create an instance of this type from an initialization function
Source§

impl<T> Instrument for T

Source§

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

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

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> PolicyExt for T
where T: ?Sized,

Source§

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

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

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<Ret> SpawnIfAsync<(), Ret> for Ret

Source§

fn spawn(self) -> Ret

Spawn the value into the dioxus runtime if it is an async block
Source§

impl<T, O> SuperFrom<T> for O
where O: From<T>,

Source§

fn super_from(input: T) -> O

Convert from a type to another type.
Source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

Source§

fn super_into(self) -> O

Convert from a type to another type.
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.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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