pub trait SocketIOContext {
// Required methods
fn into_request(self) -> Request<Body>;
fn status(&mut self, code: u32);
}Required Methods§
Sourcefn into_request(self) -> Request<Body>
fn into_request(self) -> Request<Body>
Returns the associated hyper request for this context.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".