pub trait HeadedMapWindow: MapWindow {
    type RawWindow: HasRawWindowHandle + HasRawDisplayHandle;

    fn raw(&self) -> &Self::RawWindow;
    fn request_redraw(&self);
    fn id(&self) -> u64;
}
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