Trait maplibre::vector::LayerMissing

source ·
pub trait LayerMissing: IntoMessage + Debug + Send {
    // Required methods
    fn message_tag() -> &'static dyn MessageTag;
    fn build_from(coords: WorldTileCoords, layer_name: String) -> Self
       where Self: Sized;
    fn coords(&self) -> WorldTileCoords;
    fn layer_name(&self) -> &str;
    fn to_layer(self) -> MissingVectorLayerData;
}

Required Methods§

source

fn message_tag() -> &'static dyn MessageTag

source

fn build_from(coords: WorldTileCoords, layer_name: String) -> Self
where Self: Sized,

source

fn coords(&self) -> WorldTileCoords

source

fn layer_name(&self) -> &str

source

fn to_layer(self) -> MissingVectorLayerData

Object Safety§

This trait is not object safe.

Implementors§