pub trait DisplayForCustomItem {
// Required method
fn display_with_list(
&self,
list: &SimpleDataList<Self>,
level: usize,
) -> String
where Self: Clone + PartialEq + Eq + PartialOrd + Debug + Hash;
}pub trait DisplayForCustomItem {
// Required method
fn display_with_list(
&self,
list: &SimpleDataList<Self>,
level: usize,
) -> String
where Self: Clone + PartialEq + Eq + PartialOrd + Debug + Hash;
}