pub trait Upgrade {
// Required method
fn build(&mut self, socket: Box<dyn ReadWrite + Send>);
}
Expand description
Trait for objects that can take ownership of a raw connection to the client data.
The purpose of this trait is to be used with the Connection: Upgrade
header, hence its name.