1pub trait Encoder { 2 //TODO: Think of returning Result instead of value for logs in future 3 fn encode(&self) -> Vec<u8>; 4}