pub trait CoordIndexAccessor {
    // Required methods
    fn set_coord_index(&mut self, coord_index: CoordIndex);
    fn get_coord_index(&self) -> Option<&CoordIndex>;
}
Expand description

Provides way to get/set coord index.

Required Methods§

source

fn set_coord_index(&mut self, coord_index: CoordIndex)

Sets coord index.

source

fn get_coord_index(&self) -> Option<&CoordIndex>

Gets coord index.

Implementations on Foreign Types§

source§

impl CoordIndexAccessor for Extras

Implementors§