pub struct MapMeta {
pub name: String,
pub engine_version: String,
pub map_version: String,
pub source_file: String,
pub s2_header: Option<S2Header>,
pub created_at: String,
}Expand description
Map metadata.
Fields§
§name: StringHuman-readable map name.
engine_version: StringEngine version that created this map.
map_version: StringMap format semver (bumped on non-breaking additions).
source_file: StringOriginal .s2 source file (if converted).
s2_header: Option<S2Header>Original .s2 header fields.
created_at: StringWhen the map was converted or last saved (ISO 8601).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapMeta
impl<'de> Deserialize<'de> for MapMeta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MapMeta
impl RefUnwindSafe for MapMeta
impl Send for MapMeta
impl Sync for MapMeta
impl Unpin for MapMeta
impl UnsafeUnpin for MapMeta
impl UnwindSafe for MapMeta
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