7 lines
116 B
Rust
7 lines
116 B
Rust
pub trait Rotation<V>
|
|
{
|
|
fn rotation(&self) -> V;
|
|
fn rotated(&self, &V) -> Self;
|
|
fn rotate(&mut self, &V);
|
|
}
|