pub trait Sortable<'s>: Sized {
type Meta: Meta<'s, Self>;
// Required method
fn get_meta() -> Self::Meta;
}
Available on crate feature
sort
only.Expand description
Required Associated Types§
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.