Trait frunk_core::traits::IntoReverse
source · pub trait IntoReverse {
type Output;
// Required method
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§
sourcefn into_reverse(self) -> Self::Output
fn into_reverse(self) -> Self::Output
Reverses a given data structure.