Trait IDCompositionRotateTransform_Impl
pub trait IDCompositionRotateTransform_Impl: IDCompositionTransform_Impl {
// Required methods
fn SetAngle(&self, animation: Ref<'_, IDCompositionAnimation>) -> Result<()>;
fn SetAngle2(&self, angle: f32) -> Result<()>;
fn SetCenterX(
&self,
animation: Ref<'_, IDCompositionAnimation>,
) -> Result<()>;
fn SetCenterX2(&self, centerx: f32) -> Result<()>;
fn SetCenterY(
&self,
animation: Ref<'_, IDCompositionAnimation>,
) -> Result<()>;
fn SetCenterY2(&self, centery: f32) -> Result<()>;
}
Required Methods§
fn SetAngle(&self, animation: Ref<'_, IDCompositionAnimation>) -> Result<()>
fn SetAngle2(&self, angle: f32) -> Result<()>
fn SetCenterX(&self, animation: Ref<'_, IDCompositionAnimation>) -> Result<()>
fn SetCenterX2(&self, centerx: f32) -> Result<()>
fn SetCenterY(&self, animation: Ref<'_, IDCompositionAnimation>) -> Result<()>
fn SetCenterY2(&self, centery: f32) -> 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.