Trait IPropertyAnimation_Impl
pub trait IPropertyAnimation_Impl: IUnknownImpl {
// Required methods
fn Type(&self) -> Result<PropertyAnimationType>;
fn Delay(&self) -> Result<TimeSpan>;
fn Duration(&self) -> Result<TimeSpan>;
fn Control1(&self) -> Result<Point>;
fn Control2(&self) -> Result<Point>;
}
Required Methods§
fn Type(&self) -> Result<PropertyAnimationType>
fn Delay(&self) -> Result<TimeSpan>
fn Duration(&self) -> Result<TimeSpan>
fn Control1(&self) -> Result<Point>
fn Control2(&self) -> Result<Point>
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.