pub trait Render {
// Required method
fn render(&self, f: &mut Formatter<'_>, options: &RenderOpts) -> Result;
}Required Methods§
fn render(&self, f: &mut Formatter<'_>, options: &RenderOpts) -> Result
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".