pub trait MapWindowConfig: 'static {
    type MapWindow: MapWindow;

    fn create(&self) -> Self::MapWindow;
}
Expand description

A configuration for a window which determines the corresponding implementation of a MapWindow and is able to create it.

Required Associated Types

Required Methods

Implementors