pub trait HasLocalPosition {
    fn x(&self) -> u8;
    fn y(&self) -> u8;
}

Required Methods

Implementors