servicepoint-binding-uniffi/servicepoint2/src/grid.rs
2024-05-18 10:54:12 +02:00

19 lines
491 B
Rust

pub trait Grid<T> {
/// Sets the value at the specified position
///
/// returns: the old value
fn set(&mut self, x: usize, y: usize, value: T) -> T;
/// Get the current value at the specified position
fn get(&self, x: usize, y: usize) -> T;
/// Sets all cells in the grid to the specified value
fn fill(&mut self, value: T);
/// the size in x-direction
fn width(&self) -> usize;
/// the height in y-direction
fn height(&self) -> usize;
}