1
2
3
4
5
use ::error::Result;

pub trait Response {
    fn to_bytes(&self) -> Result<Vec<u8>>;
}