Trait Sorting

Source
pub trait Sorting:
    Sync
    + Send
    + Copy
    + Clone
    + 'static {
    const SORTED: bool;
}
Expand description

Sorting for JSON

Required Associated Constants§

Source

const SORTED: bool

Is this codec sorted

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.

Implementors§