1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-02 01:31:57 +02:00

update guide

This commit is contained in:
Nikolay Kim
2017-12-13 22:36:28 -08:00
parent 408ddf0be1
commit b7cde3f4a9
14 changed files with 81 additions and 22 deletions

View File

@@ -6,8 +6,8 @@ use futures::Stream;
use error::Error;
pub(crate) type BodyStream = Box<Stream<Item=Bytes, Error=Error>>;
/// Type represent streaming body
pub type BodyStream = Box<Stream<Item=Bytes, Error=Error>>;
/// Represents various types of http message body.
pub enum Body {