pub struct FileTileWriter { /* private fields */ }Available on crate feature
std only.Expand description
A Folder-File tile writer
Implementations§
Trait Implementations§
Source§impl Debug for FileTileWriter
impl Debug for FileTileWriter
Source§impl TemporalTileWriter for FileTileWriter
impl TemporalTileWriter for FileTileWriter
Source§impl TileWriter for FileTileWriter
impl TileWriter for FileTileWriter
Source§fn write_tile_wm(&mut self, zoom: u8, x: u32, y: u32, data: Vec<u8>)
fn write_tile_wm(&mut self, zoom: u8, x: u32, y: u32, data: Vec<u8>)
Write a Web Mercator tile to the folder location given its (zoom, x, y) coordinates.
Auto Trait Implementations§
impl Freeze for FileTileWriter
impl RefUnwindSafe for FileTileWriter
impl Send for FileTileWriter
impl Sync for FileTileWriter
impl Unpin for FileTileWriter
impl UnwindSafe for FileTileWriter
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more