pub trait HexRotation {
    // Required methods
    fn rotate_left(&self) -> Hex;
    fn rotate_right(&self) -> Hex;
}

Required Methods§

source

fn rotate_left(&self) -> Hex

source

fn rotate_right(&self) -> Hex

Implementors§