pub trait IntoBody { type Body: Body; // Required method fn into_body(self) -> Self::Body; }
Convert self into body.
The body type to convert to.
Consume self and turn into a body.