pub struct MapboxVectorTile {
pub layers: BTreeMap<String, MapboxVectorLayer>,
/* private fields */
}
Expand description
The vector tile struct that covers both “open” and “mapbox” specifications
Fields§
§layers: BTreeMap<String, MapboxVectorLayer>
the layers in the vector tile
Implementations§
Trait Implementations§
Source§impl Debug for MapboxVectorTile
impl Debug for MapboxVectorTile
Source§impl From<&mut MapboxVectorTile> for BaseVectorTile
impl From<&mut MapboxVectorTile> for BaseVectorTile
Source§fn from(vector_tile: &mut MapboxVectorTile) -> Self
fn from(vector_tile: &mut MapboxVectorTile) -> Self
Convert from Mapbox vector layer
Source§impl ProtoRead for MapboxVectorTile
impl ProtoRead for MapboxVectorTile
Auto Trait Implementations§
impl Freeze for MapboxVectorTile
impl !RefUnwindSafe for MapboxVectorTile
impl !Send for MapboxVectorTile
impl !Sync for MapboxVectorTile
impl Unpin for MapboxVectorTile
impl !UnwindSafe for MapboxVectorTile
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