logo
pub trait BodyWrite: Send {
    fn write_body(&mut self, body: &mut ResponseBody<'_>) -> Result<()>;
}
Expand description

A trait which writes the body of one response.

Required Methods

Implementations on Foreign Types

Implementors