pub trait HeadRenderer<H: Head> {
    fn new() -> Self;
fn render(&self, head: H, buf: &mut Vec<u8>) -> Result<()>; }

Required methods

Implementors