Function actix_http::body::to_bytes
source · [−]pub async fn to_bytes<B: MessageBody>(body: B) -> Result<Bytes, B::Error>
Expand description
Collects the body produced by a MessageBody
implementation into Bytes
.
Any errors produced by the body stream are returned immediately.
Examples
use actix_http::body::{self, to_bytes};
use bytes::Bytes;
let body = body::None::new();
let bytes = to_bytes(body).await.unwrap();
assert!(bytes.is_empty());
let body = Bytes::from_static(b"123");
let bytes = to_bytes(body).await.unwrap();
assert_eq!(bytes, b"123"[..]);