pub trait Message: Debug { // Required method fn payload(&self) -> &[u8] ⓘ; }
Provides a generic abstraction over a message.
Returns the payload of the message.