Struct reqwest::Body [] [src]

pub struct Body { /* fields omitted */ }

Body type for a request.

Methods

impl Body
[src]

Instantiate a Body from a reader.

Trait Implementations

impl From<Vec<u8>> for Body
[src]

Performs the conversion.

impl From<String> for Body
[src]

Performs the conversion.

impl<'a> From<&'a [u8]> for Body
[src]

Performs the conversion.

impl<'a> From<&'a str> for Body
[src]

Performs the conversion.

impl From<File> for Body
[src]

Performs the conversion.