pub trait IUIAnimationVariableIntegerChangeHandler_Impl: Sized {
    // Required method
    fn OnIntegerValueChanged(
        &self,
        storyboard: Option<&IUIAnimationStoryboard>,
        variable: Option<&IUIAnimationVariable>,
        newvalue: i32,
        previousvalue: i32
    ) -> Result<()>;
}

Required Methods§

fn OnIntegerValueChanged( &self, storyboard: Option<&IUIAnimationStoryboard>, variable: Option<&IUIAnimationVariable>, newvalue: i32, previousvalue: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§