Struct websocket::codec::http::HttpClientCodec [−][src]
A codec to be used with tokio
codecs that can serialize HTTP requests and
deserialize HTTP responses. One can use this on it’s own without websockets to
make a very bare async HTTP server.
Example
use websocket::async::HttpClientCodec; let mut runtime = tokio::runtime::Builder::new().build().unwrap(); let addr = "crouton.net".parse().unwrap(); let f = TcpStream::connect(&addr) .and_then(|s| { Ok(HttpClientCodec.framed(s)) }) .and_then(|s| { s.send(Incoming { version: HttpVersion::Http11, subject: (Method::Get, RequestUri::AbsolutePath("/".to_string())), headers: Headers::new(), }) }) .map_err(|e| e.into()) .and_then(|s| s.into_future().map_err(|(e, _)| e)) .map(|(m, _)| println!("You got a crouton: {:?}", m)); runtime.block_on(f).unwrap();
Trait Implementations
impl Clone for HttpClientCodec
[src]
fn clone(&self) -> HttpClientCodec
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for HttpClientCodec
[src]
impl Debug for HttpClientCodec
[src]
impl Decoder for HttpClientCodec
[src]
type Item = Incoming<RawStatus>
The type of decoded frames.
type Error = HttpCodecError
The type of unrecoverable frame decoding errors. Read more
fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
pub fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
pub fn framed<T>(self, io: T) -> Framed<T, Self> where
Self: Encoder,
T: AsyncRead + AsyncWrite,
[src]
Self: Encoder,
T: AsyncRead + AsyncWrite,
impl Encoder for HttpClientCodec
[src]
Auto Trait Implementations
impl RefUnwindSafe for HttpClientCodec
impl Send for HttpClientCodec
impl Sync for HttpClientCodec
impl Unpin for HttpClientCodec
impl UnwindSafe for HttpClientCodec
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> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
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,