Struct soketto::handshake::server::Server [−][src]
pub struct Server<'a, T> { /* fields omitted */ }
Websocket handshake client.
Implementations
impl<'a, T: AsyncRead + AsyncWrite + Unpin> Server<'a, T>
[src]
impl<'a, T: AsyncRead + AsyncWrite + Unpin> Server<'a, T>
[src]pub fn new(socket: T) -> Self
[src]
Create a new server handshake.
pub fn set_buffer(&mut self, b: BytesMut) -> &mut Self
[src]
Override the buffer to use for request/response handling.
pub fn take_buffer(&mut self) -> BytesMut
[src]
Extract the buffer.
pub fn add_protocol(&mut self, p: &'a str) -> &mut Self
[src]
Add a protocol the server supports.
pub fn add_extension(&mut self, e: Box<dyn Extension + Send>) -> &mut Self
[src]
Add an extension the server supports.
pub fn drain_extensions(
&mut self
) -> impl Iterator<Item = Box<dyn Extension + Send>> + '_
[src]
&mut self
) -> impl Iterator<Item = Box<dyn Extension + Send>> + '_
Get back all extensions.
pub async fn receive_request(&mut self) -> Result<ClientRequest<'a>, Error>
[src]
Await an incoming client handshake request.
pub async fn send_response(&mut self, r: &Response<'_>) -> Result<(), Error>
[src]
Respond to the client.
pub fn into_builder(self) -> Builder<T>
[src]
Turn this handshake into a connection::Builder
.
pub fn into_inner(self) -> T
[src]
Get out the inner socket of the server.
Trait Implementations
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for Server<'a, T>
impl<'a, T> Send for Server<'a, T> where
T: Send,
T: Send,
impl<'a, T> !Sync for Server<'a, T>
impl<'a, T> Unpin for Server<'a, T> where
T: Unpin,
T: Unpin,