Enum lando::Body [] [src]

pub enum Body {
    Empty,
    Bytes(Bytes),
}

Reprentation of reques and response bodies

Variants

Trait Implementations

impl Debug for Body
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for Body
[src]

[src]

Returns the "default value" for a type. Read more

impl From<()> for Body
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl From<String> for Body
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Body

impl Sync for Body