Enum TileScheme
#[non_exhaustive]pub enum TileScheme {
Xyz,
Tms,
}Expand description
Tile URL coordinate scheme for vector, raster, and raster DEM sources.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
§impl TileScheme
impl TileScheme
Trait Implementations§
§impl Clone for TileScheme
impl Clone for TileScheme
§fn clone(&self) -> TileScheme
fn clone(&self) -> TileScheme
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for TileScheme
impl Debug for TileScheme
§impl Hash for TileScheme
impl Hash for TileScheme
§impl PartialEq for TileScheme
impl PartialEq for TileScheme
impl Copy for TileScheme
impl Eq for TileScheme
impl StructuralPartialEq for TileScheme
Auto Trait Implementations§
impl Freeze for TileScheme
impl RefUnwindSafe for TileScheme
impl Send for TileScheme
impl Sync for TileScheme
impl Unpin for TileScheme
impl UnsafeUnpin for TileScheme
impl UnwindSafe for TileScheme
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