pub trait Response: IntoResponse { // Required method fn body(self) -> Result<Vec<u8>, Error>; }
Trait that defines the Announce Response Format
Returns the Body of the Announce Response
If unable to generate the response, it will return an error.
Implement the Response for the Announce.
Response
Announce