Struct tile_grid::TileMatrixSetItem
source · pub struct TileMatrixSetItem {
pub id: Option<String>,
pub title: Option<String>,
pub uri: Option<String>,
pub crs: Option<Crs>,
pub links: Links,
}Expand description
A minimal tile matrix set element for use within a list of tile matrix sets linking to a full definition.
Fields§
§id: Option<String>Optional local tile matrix set identifier, e.g. for use as unspecified
{tileMatrixSetId} parameter. Implementation of ‘identifier’
title: Option<String>Title of this tile matrix set, normally used for display to a human
uri: Option<String>Reference to an official source for this tileMatrixSet
crs: Option<Crs>§links: LinksLinks to related resources. A ‘self’ link to the tile matrix set definition is required.
Trait Implementations§
source§impl Default for TileMatrixSetItem
impl Default for TileMatrixSetItem
source§fn default() -> TileMatrixSetItem
fn default() -> TileMatrixSetItem
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for TileMatrixSetItem
impl Send for TileMatrixSetItem
impl Sync for TileMatrixSetItem
impl Unpin for TileMatrixSetItem
impl UnwindSafe for TileMatrixSetItem
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