pub trait Reverse: Sized {
    // Required method
    fn reverse(self, services: &mut Services) -> Self;
}
Expand description

Reverse the direction/orientation of an object

Required Methods§

source

fn reverse(self, services: &mut Services) -> Self

Reverse the direction/orientation of the object

Implementors§