pub trait TreeLabelRenderer<T: TreeModel> {
// Required method
fn cell<'a>(
&'a self,
model: &'a T,
id: T::Id,
ctx: &TreeRowContext<'_>,
glyphs: &TreeGlyphs<'a>,
) -> Cell<'a>;
}pub trait TreeLabelRenderer<T: TreeModel> {
// Required method
fn cell<'a>(
&'a self,
model: &'a T,
id: T::Id,
ctx: &TreeRowContext<'_>,
glyphs: &TreeGlyphs<'a>,
) -> Cell<'a>;
}