pub trait Column: Debug {
// Required method
fn render(&self, i18n: &FluentLanguageLoader) -> Markup;
}Expand description
A property of an entity that can be rendered as a column on the list page
Required Methods§
fn render(&self, i18n: &FluentLanguageLoader) -> Markup
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".