Struct websocket::server::upgrade::WsUpgrade [−][src]
Intermediate representation of a half created websocket session. Should be used to examine the client’s handshake accept the protocols requested, route the path, etc.
Users should then call accept
or reject
to complete the handshake
and start a session.
Note: if the stream in use is AsyncRead + AsyncWrite
, then asynchronous
functions will be available when completing the handshake.
Otherwise if the stream is simply Read + Write
blocking functions will be
available to complete the handshake.
Fields
headers: Headers
The headers that will be used in the handshake response.
stream: S
The stream that will be used to read from / write to.
request: Request
The handshake request, filled with useful metadata.
buffer: B
Some buffered data from the stream, if it exists.
Implementations
impl<S> WsUpgrade<S, BytesMut> where
S: Stream + Send + 'static,
[src]
S: Stream + Send + 'static,
These are the extra functions given to WsUpgrade
with the async
feature
turned on. A type alias for this specialization of WsUpgrade
lives in this
module under the name Upgrade
.
pub fn accept(self) -> ClientNew<S>
[src]
Asynchronously accept the websocket handshake, then create a client. This will asynchronously send a response accepting the connection and create a websocket client.
pub fn accept_with(self, custom_headers: &Headers) -> ClientNew<S>
[src]
Asynchronously accept the websocket handshake, then create a client. This will asynchronously send a response accepting the connection with custom headers in the response and create a websocket client.
pub fn reject(self) -> SinkSend<Framed<S, HttpServerCodec>>
[src]
Asynchronously send a rejection message and deconstruct self
into it’s original stream. The stream being returned is framed with the
HttpServerCodec
since that was used to send the rejection message.
pub fn reject_with(
self,
headers: &Headers
) -> SinkSend<Framed<S, HttpServerCodec>>
[src]
self,
headers: &Headers
) -> SinkSend<Framed<S, HttpServerCodec>>
Asynchronously send a rejection message with custom headers and
deconstruct self
into it’s original stream.
The stream being returned is framed with the
HttpServerCodec
since that was used to send the rejection message.
impl<S> WsUpgrade<S, Option<Buffer>> where
S: Stream,
[src]
S: Stream,
These methods are the synchronous ways of accepting and rejecting a websocket handshake.
pub fn accept(self) -> Result<Client<S>, (S, Error)>
[src]
Accept the handshake request and send a response, if nothing goes wrong a client will be created.
pub fn accept_with(
self,
custom_headers: &Headers
) -> Result<Client<S>, (S, Error)>
[src]
self,
custom_headers: &Headers
) -> Result<Client<S>, (S, Error)>
Accept the handshake request and send a response while adding on a few headers. These headers are added before the required headers are, so some might be overwritten.
pub fn reject(self) -> Result<S, (S, Error)>
[src]
Reject the client’s request to make a websocket connection.
pub fn reject_with(self, headers: &Headers) -> Result<S, (S, Error)>
[src]
Reject the client’s request to make a websocket connection and send extra headers.
impl<S, B> WsUpgrade<S, B> where
S: Stream + AsTcpStream,
[src]
S: Stream + AsTcpStream,
pub fn tcp_stream(&self) -> &TcpStreamⓘ
[src]
Get a handle to the underlying TCP stream, useful to be able to set TCP options, etc.
impl<S, B> WsUpgrade<S, B> where
S: Stream,
[src]
S: Stream,
pub fn use_protocol<P>(self, protocol: P) -> Self where
P: Into<String>,
[src]
P: Into<String>,
Select a protocol to use in the handshake response.
pub fn use_extension(self, extension: Extension) -> Self
[src]
Select an extension to use in the handshake response.
pub fn use_extensions<I>(self, extensions: I) -> Self where
I: IntoIterator<Item = Extension>,
[src]
I: IntoIterator<Item = Extension>,
Select multiple extensions to use in the connection
pub fn drop(self)
[src]
Drop the connection without saying anything.
pub fn protocols(&self) -> &[String]
[src]
A list of protocols requested from the client.
pub fn extensions(&self) -> &[Extension]
[src]
A list of extensions requested from the client.
pub fn key(&self) -> Option<&[u8; 16]>
[src]
The client’s websocket accept key.
pub fn version(&self) -> Option<&WebSocketVersion>
[src]
The client’s websocket version.
pub fn uri(&self) -> String
[src]
The original request URI.
pub fn origin(&self) -> Option<&str>
[src]
Origin of the client
Auto Trait Implementations
impl<S, B> !RefUnwindSafe for WsUpgrade<S, B>
impl<S, B> Send for WsUpgrade<S, B> where
B: Send,
S: Send,
B: Send,
S: Send,
impl<S, B> !Sync for WsUpgrade<S, B>
impl<S, B> Unpin for WsUpgrade<S, B> where
B: Unpin,
S: Unpin,
B: Unpin,
S: Unpin,
impl<S, B> !UnwindSafe for WsUpgrade<S, B>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Typeable for T where
T: Any,
T: Any,