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

    // Required methods
    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§

source

fn raw(&self) -> &Self::RawWindow

source

fn request_redraw(&self)

source

fn id(&self) -> u64

Implementors§