pub trait Reverse {
    fn reverse(self) -> Self;
}
Expand description

Reverse the direction/orientation of an object

Required Methods

Reverse the direction/orientation of the object

Implementors