windows::ApplicationModel::Core

Trait IFrameworkView_Impl

pub trait IFrameworkView_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        applicationView: Ref<'_, CoreApplicationView>,
    ) -> Result<()>;
    fn SetWindow(&self, window: Ref<'_, CoreWindow>) -> Result<()>;
    fn Load(&self, entryPoint: &HSTRING) -> Result<()>;
    fn Run(&self) -> Result<()>;
    fn Uninitialize(&self) -> Result<()>;
}

Required Methods§

fn Initialize( &self, applicationView: Ref<'_, CoreApplicationView>, ) -> Result<()>

fn SetWindow(&self, window: Ref<'_, CoreWindow>) -> Result<()>

fn Load(&self, entryPoint: &HSTRING) -> Result<()>

fn Run(&self) -> Result<()>

fn Uninitialize(&self) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§