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][+]
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,
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>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Typeable for T where
T: Any,
[+]
T: Any,