pub trait Render {
// Required method
fn render(&self, ctx: &RenderContext, f: &mut Formatter<'_>) -> Result;
}Expand description
Trait for types that can be rendered to SQL.
Required Methods§
fn render(&self, ctx: &RenderContext, f: &mut Formatter<'_>) -> Result
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".