Skip to main content

Render

Trait Render 

Source
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§

Source

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".

Implementors§