pub trait IntoReverse {
    type Output;

    fn into_reverse(self) -> Self::Output;
}
Expand description

Trait that allows for reversing a given data structure.

Implemented for HLists.

This functionality is also provided as an inherent method. However, you may find this trait useful in generic contexts.

Required Associated Types

Required Methods

Reverses a given data structure.

Implementors