pub trait FromBuf { // Required method fn from_buf(buf: Vec<u8>) -> Option<Self> where Self: Sized; }