pub trait IPresentationFactory_Impl: Sized {
// Required methods
fn IsPresentationSupported(&self) -> u8;
fn IsPresentationSupportedWithIndependentFlip(&self) -> u8;
fn CreatePresentationManager(&self) -> Result<IPresentationManager>;
}
Required Methods§
fn IsPresentationSupported(&self) -> u8
fn IsPresentationSupportedWithIndependentFlip(&self) -> u8
fn CreatePresentationManager(&self) -> Result<IPresentationManager>
Object Safety§
This trait is not object safe.