1
 2
 3
 4
 5
 6
 7
 8
 9
10
use crate::{
    Point,
    PointState,
};
use std::collections::HashMap;

/// The state of all Azimuth points.
pub struct PointStore {
    state: HashMap<Point, PointState>,
}