Trait IMILBitmapEffect_Impl
pub trait IMILBitmapEffect_Impl: IUnknownImpl {
// Required methods
fn GetOutput(
&self,
uiindex: u32,
pcontext: Ref<'_, IMILBitmapEffectRenderContext>,
) -> Result<IWICBitmapSource>;
fn GetParentEffect(&self) -> Result<IMILBitmapEffectGroup>;
fn SetInputSource(
&self,
uiindex: u32,
pbitmapsource: Ref<'_, IWICBitmapSource>,
) -> Result<()>;
}
Required Methods§
fn GetOutput( &self, uiindex: u32, pcontext: Ref<'_, IMILBitmapEffectRenderContext>, ) -> Result<IWICBitmapSource>
fn GetParentEffect(&self) -> Result<IMILBitmapEffectGroup>
fn SetInputSource( &self, uiindex: u32, pbitmapsource: Ref<'_, IWICBitmapSource>, ) -> 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.