pub struct Body(/* private fields */);Expand description
Contains the body of a synchronous HTTP request or response.
This type is used to encapsulate the underlying stream or region of memory
where the contents of the body are stored. A Body can be created from
many types of sources using the Into trait or one of
its constructor functions. It can also be created from anything that
implements Read, which Body itself also implements.
For asynchronous requests, use AsyncBody instead.
Implementations§
Source§impl Body
impl Body
Sourcepub const fn empty() -> Self
pub const fn empty() -> Self
Create a new empty body.
An empty body represents the absence of a body, which is semantically different than the presence of a body of zero length.
Sourcepub fn from_bytes_static<B>(bytes: B) -> Self
pub fn from_bytes_static<B>(bytes: B) -> Self
Create a new body from a potentially static byte buffer.
The body will have a known length equal to the number of bytes given.
This will try to prevent a copy if the type passed in can be re-used, otherwise the buffer will be copied first. This method guarantees to not require a copy for the following types:
&'static [u8]&'static str
§Examples
use isahc::Body;
// Create a body from a static string.
let body = Body::from_bytes_static("hello world");Sourcepub fn from_reader<R>(reader: R) -> Self
pub fn from_reader<R>(reader: R) -> Self
Create a streaming body that reads from the given reader.
The body will have an unknown length. When used as a request body, chunked transfer encoding might be used to send the request.
Sourcepub fn from_reader_sized<R>(reader: R, length: u64) -> Self
pub fn from_reader_sized<R>(reader: R, length: u64) -> Self
Create a streaming body with a known length.
If the size of the body is known in advance, such as with a file, then
this function can be used to create a body that can determine its
Content-Length while still reading the bytes asynchronously.
Giving a value for length that doesn’t actually match how much data
the reader will produce may result in errors when sending the body in a
request.
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Report if this body is empty.
This is not necessarily the same as checking for self.len() == Some(0). Since HTTP message bodies are optional, there is a semantic
difference between the absence of a body and the presence of a
zero-length body. This method will only return true for the former.
Sourcepub fn len(&self) -> Option<u64>
pub fn len(&self) -> Option<u64>
Get the size of the body, if known.
The value reported by this method is used to set the Content-Length
for outgoing requests.
When coming from a response, this method will report the value of the
Content-Length response header if present. If this method returns
None then there’s a good chance that the server used something like
chunked transfer encoding to send the response body.
Since the length may be determined totally separately from the actual bytes, even if a value is returned it should not be relied on as always being accurate, and should be treated as a “hint”.
Trait Implementations§
Source§impl Read for Body
impl Read for Body
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
1.36.0 · Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)cursor. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read. Read more