pub trait Callback: Sized {
    // Required method
    fn on_request(
        self,
        request: &Request,
        response: Response
    ) -> StdResult<Response, ErrorResponse>;
}
Expand description

The callback trait.

The callback is called when the server receives an incoming WebSocket handshake request from the client. Specifying a callback allows you to analyze incoming headers and add additional headers to the response that server sends to the client and/or reject the connection based on the incoming headers.

Required Methods§

source

fn on_request( self, request: &Request, response: Response ) -> StdResult<Response, ErrorResponse>

Called whenever the server read the request from the client and is ready to reply to it. May return additional reply headers. Returning an error resulting in rejecting the incoming connection.

Implementors§