pub trait TreeCellRenderer<T: TreeModel> {
// Required method
fn cell<'a>(
&'a self,
model: &'a T,
id: T::Id,
context: &TreeRowContext<'_>,
) -> Cell<'a>;
}Expand description
Renders an additional cell with full row context.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".