[][src]Trait kludgine::window::OpenableWindow

pub trait OpenableWindow {
#[must_use]    fn open<'async_trait>(
        window: Self
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Required methods

#[must_use]fn open<'async_trait>(
    window: Self
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
    Self: 'async_trait, 

Loading content...

Implementors

impl<T> OpenableWindow for T where
    T: Window + WindowCreator<T>, 
[src]

Loading content...