Trait rouille::Upgrade [] [src]

pub trait Upgrade {
    fn build(&mut self, socket: Box<ReadWrite + Send>);
}

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.

Required Methods

Initializes the object with the given socket.

Implementors