Trait FontBuilder
piet
pub trait FontBuilder { type Out: Font; fn build(self) -> Result<Self::Out, Error>; }
type Out: Font
fn build(self) -> Result<Self::Out, Error>