Trait Builder
molecule::prelude
pub trait Builder: Default { type Entity: Entity; const NAME: &'static str; fn expected_length(&self) -> usize; fn write<W: Write>(&self, writer: &mut W) -> Result<()>; fn build(&self) -> Self::Entity; }
type Entity: Entity
const NAME: &'static str
fn expected_length(&self) -> usize
fn write<W: Write>(&self, writer: &mut W) -> Result<()>
fn build(&self) -> Self::Entity