Trait ITransformProvider_Impl
pub trait ITransformProvider_Impl: IUnknownImpl {
// Required methods
fn Move(&self, x: f64, y: f64) -> Result<()>;
fn Resize(&self, width: f64, height: f64) -> Result<()>;
fn Rotate(&self, degrees: f64) -> Result<()>;
fn CanMove(&self) -> Result<BOOL>;
fn CanResize(&self) -> Result<BOOL>;
fn CanRotate(&self) -> Result<BOOL>;
}
Required Methods§
fn Move(&self, x: f64, y: f64) -> Result<()>
fn Resize(&self, width: f64, height: f64) -> Result<()>
fn Rotate(&self, degrees: f64) -> Result<()>
fn CanMove(&self) -> Result<BOOL>
fn CanResize(&self) -> Result<BOOL>
fn CanRotate(&self) -> Result<BOOL>
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.