pub struct TilePath {
pub layer: String,
pub z: u8,
pub x: u32,
pub y: u32,
pub format: String,
}Expand description
Tile path parameters
Fields§
§layer: StringLayer name
z: u8Zoom level
x: u32Tile X coordinate
y: u32Tile Y coordinate
format: StringImage format (extension)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TilePath
impl RefUnwindSafe for TilePath
impl Send for TilePath
impl Sync for TilePath
impl Unpin for TilePath
impl UnsafeUnpin for TilePath
impl UnwindSafe for TilePath
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