Trait Backend

Source
pub trait Backend {
    // Required method
    fn build_and_write<W>(ctxt: Ctxt, output: &mut W, print_extra_info: bool)
       where W: Write;
}

Required Methods§

Source

fn build_and_write<W>(ctxt: Ctxt, output: &mut W, print_extra_info: bool)
where W: Write,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§