pub trait IPropertyAnimation_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§