pub trait CBORSortable<T> { // Required method fn sort_by_cbor_encoding(&self) -> Vec<T> where Self: Sized + Into<CBOR> + Clone; }