Trait epee_encoding::EpeeObjectBuilder
source · pub trait EpeeObjectBuilder<T>: Default + Sized {
// Required methods
fn add_field<R: Read>(&mut self, name: &str, r: &mut R) -> Result<bool>;
fn finish(self) -> Result<T>;
}
Expand description
A trait for an object that can build a type T
from the epee format.