pub struct Incoming { /* private fields */ }
Expand description
A stream of Bytes
, used when receiving bodies from the network.
Note that Users should not instantiate this struct directly. When working with the hyper client,
Incoming
is returned to you in responses. Similarly, when operating with the hyper server,
it is provided within requests.
§Examples
ⓘ
async fn echo(
req: Request<hyper::body::Incoming>,
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
//Here, you can process `Incoming`
}
Trait Implementations§
source§impl Body for Incoming
impl Body for Incoming
Auto Trait Implementations§
impl Freeze for Incoming
impl !RefUnwindSafe for Incoming
impl Send for Incoming
impl Sync for Incoming
impl Unpin for Incoming
impl !UnwindSafe for Incoming
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more