pub struct TilePoint {
pub coordinates: Option<[f64; 2]>,
pub crs: Option<Crs>,
pub tile_matrix: Option<String>,
pub scale_denominator: Option<f64>,
pub cell_size: Option<f64>,
}Fields§
§coordinates: Option<[f64; 2]>§crs: Option<Crs>§tile_matrix: Option<String>TileMatrix identifier associated with the scaleDenominator
scale_denominator: Option<f64>Scale denominator of the tile matrix selected
cell_size: Option<f64>Cell size of the tile matrix selected
Trait Implementations§
source§impl<'de> Deserialize<'de> for TilePoint
impl<'de> Deserialize<'de> for TilePoint
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 RefUnwindSafe for TilePoint
impl Send for TilePoint
impl Sync for TilePoint
impl Unpin for TilePoint
impl UnwindSafe for TilePoint
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