Skip to main content

Body

Trait Body 

Source
pub trait Body:
    Debug
    + Send
    + Sync { }
Expand description

The Body trait is used to restrict the types able to implement request body. It is implemented by all xxxRequest types.

Implementors§

Source§

impl<T> Body for T
where T: Debug + Send + Sync,