hilbert_curve_rust/
coordinate_value.rs

1#[derive(Copy, Clone)]
2pub struct CoordinateValue {
3  pub x: u32,
4  pub y: u32
5}