pub trait WriteTuple: Sized {
    type Parent: TypedParent;

    fn write_field(self, value: &impl StrictEncode) -> Result<Self>;
    fn complete(self) -> Self::Parent;
}

Required Associated Types§

Required Methods§

Implementors§