rsa_msg_packets/
types.rs

1pub trait ByteMessage
2{
3    fn serialize(&self) -> Vec<u8>;
4    fn deserialize(data: &Vec<u8>) -> anyhow::Result<Self> where Self: Sized;
5}