pub trait IDCompositionMatrixTransform_Impl: Sized + IDCompositionTransform_Impl {
// Required methods
fn SetMatrix(&self, matrix: *const Matrix3x2) -> Result<()>;
fn SetMatrixElement(
&self,
row: i32,
column: i32,
animation: Option<&IDCompositionAnimation>,
) -> Result<()>;
fn SetMatrixElement2(&self, row: i32, column: i32, value: f32) -> Result<()>;
}
Required Methods§
fn SetMatrix(&self, matrix: *const Matrix3x2) -> Result<()>
fn SetMatrixElement( &self, row: i32, column: i32, animation: Option<&IDCompositionAnimation>, ) -> Result<()>
fn SetMatrixElement2(&self, row: i32, column: i32, value: f32) -> Result<()>
Object Safety§
This trait is not object safe.