pub trait SortedOutputExt {
    type Sorted<'a>
    where
        Self: 'a
; fn sorted_debug(&self) -> Self::Sorted<'_>; }
Expand description

An extension trait for easier production of SortedHashMapDebugOutput values

This trait is generic because it may be extended in future versions of the crate, but for now it only applies to HashMap.

Required Associated Types

The target type

Required Methods

A method which borrows self as the given target

Implementations on Foreign Types

Implementors