pub trait VerifySortedAndUnique<T> {
    fn verify_sorted_and_unique(&self) -> Result<(), Error>;
}
Expand description

Collections of items must be sorted lexicographically and all unique.

Required methods

Verify a collection of items is sorted and all unique.

Implementations on Foreign Types

Implementors