pub trait ModifyResponseBody: Sync + Send { // Required method fn handle(&self, data: Bytes) -> Result<Bytes>; // Provided method fn name(&self) -> String { ... } }
Trait for modifying the response body