Struct websocket::server::upgrade::sync::HyperRequest [−][src]
Upgrade a hyper connection to a websocket one.
A hyper request is implicitly defined as a stream from other impl
s of Stream.
Until trait impl specialization comes along, we use this struct to differentiate
a hyper request (which already has parsed headers) from a normal stream.
Using this method, one can start a hyper server and check if each request is a websocket upgrade request, if so you can use websockets and hyper on the same port!
use hyper::server::{Server, Request, Response}; use websocket::Message; use websocket::sync::server::upgrade::IntoWs; use websocket::sync::server::upgrade::HyperRequest; Server::http("0.0.0.0:80").unwrap().handle(move |req: Request, res: Response| { match HyperRequest(req).into_ws() { Ok(upgrade) => { // `accept` sends a successful handshake, no need to worry about res let mut client = match upgrade.accept() { Ok(c) => c, Err(_) => panic!(), }; client.send_message(&Message::text("its free real estate")); }, Err((request, err)) => { // continue using the request as normal, "echo uri" res.send(b"Try connecting over ws instead.").unwrap(); }, }; }) .unwrap();
Trait Implementations
impl<'a, 'b> IntoWs for HyperRequest<'a, 'b>
[src]
type Stream = &'a mut &'b mut dyn NetworkStream
The type of stream this upgrade process is working with (TcpStream, etc.)
type Error = (Request<'a, 'b>, HyperIntoWsError)
An error value in case the stream is not asking for a websocket connection or something went wrong. It is common to also include the stream here. Read more
fn into_ws(self) -> Result<Upgrade<Self::Stream>, Self::Error>
[src]
Auto Trait Implementations
impl<'a, 'b> !RefUnwindSafe for HyperRequest<'a, 'b>
impl<'a, 'b> Send for HyperRequest<'a, 'b>
impl<'a, 'b> !Sync for HyperRequest<'a, 'b>
impl<'a, 'b> Unpin for HyperRequest<'a, 'b> where
'b: 'a,
'b: 'a,
impl<'a, 'b> !UnwindSafe for HyperRequest<'a, '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,