pub trait TableViewItem<H>: Clone + Sized{
// Required methods
fn to_column(&self, column: H) -> String;
fn cmp(&self, other: &Self, column: H) -> Ordering
where Self: Sized;
}Expand description
A trait for displaying and sorting items inside a
TableView.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.