pub trait IPresentationFactory_Impl: Sized {
    // Required methods
    fn IsPresentationSupported(&self) -> u8;
    fn IsPresentationSupportedWithIndependentFlip(&self) -> u8;
    fn CreatePresentationManager(&self) -> Result<IPresentationManager>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§