pub trait Reverse: Sized {
    fn reverse(self, objects: &Objects) -> Result<Self, ValidationError>;
}
Expand description

Reverse the direction/orientation of an object

Required Methods

Reverse the direction/orientation of the object

Implementors