pub trait IUIAnimationTransition2_Impl: Sized {
    // Required methods
    fn GetDimension(&self) -> Result<u32>;
    fn SetInitialValue(&self, value: f64) -> Result<()>;
    fn SetInitialVectorValue(
        &self,
        value: *const f64,
        cdimension: u32
    ) -> Result<()>;
    fn SetInitialVelocity(&self, velocity: f64) -> Result<()>;
    fn SetInitialVectorVelocity(
        &self,
        velocity: *const f64,
        cdimension: u32
    ) -> Result<()>;
    fn IsDurationKnown(&self) -> Result<()>;
    fn GetDuration(&self) -> Result<f64>;
}

Required Methods§

fn GetDimension(&self) -> Result<u32>

fn SetInitialValue(&self, value: f64) -> Result<()>

fn SetInitialVectorValue( &self, value: *const f64, cdimension: u32 ) -> Result<()>

fn SetInitialVelocity(&self, velocity: f64) -> Result<()>

fn SetInitialVectorVelocity( &self, velocity: *const f64, cdimension: u32 ) -> Result<()>

fn IsDurationKnown(&self) -> Result<()>

fn GetDuration(&self) -> Result<f64>

Object Safety§

This trait is not object safe.

Implementors§