pub struct Zone {
pub polygon_id: u32,
pub meta_id: u32,
pub fields: HashMap<String, String>,
}
Expand description
Zone retrieved from the database.
Fields§
§polygon_id: u32
Polygon ID.
meta_id: u32
Metadata ID.
fields: HashMap<String, String>
Zone information. The keys will vary depending on the database.
Trait Implementations§
impl Eq for Zone
impl StructuralPartialEq for Zone
Auto Trait Implementations§
impl Freeze for Zone
impl RefUnwindSafe for Zone
impl Send for Zone
impl Sync for Zone
impl Unpin for Zone
impl UnwindSafe for Zone
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more