pub trait IntoBody { // Required method fn into_body(self) -> Vec<u8> ⓘ; }
A trait for any type that can be turned into a Response body
Response
Turn self into a Response body
self