pub trait HeadedMapWindow: MapWindow {
    type RawWindow: HasRawWindowHandle;

    fn inner(&self) -> &Self::RawWindow;
}
Expand description

Window which references a physical RawWindow. This is only implemented by headed windows and not by headless windows.

Required Associated Types

Required Methods

Implementors