pub trait PermApply<T>where
T: ?Sized,{
type Output;
// Required method
fn apply(&self, input: &mut T) -> Self::Output;
}Expand description
The permutation operator on slice-like types.
pub trait PermApply<T>where
T: ?Sized,{
type Output;
// Required method
fn apply(&self, input: &mut T) -> Self::Output;
}The permutation operator on slice-like types.