pub trait IUIAnimationTimerUpdateHandler_Impl: Sized {
    // Required methods
    fn OnUpdate(&self, timenow: f64) -> Result<UI_ANIMATION_UPDATE_RESULT>;
    fn SetTimerClientEventHandler(
        &self,
        handler: Option<&IUIAnimationTimerClientEventHandler>,
    ) -> Result<()>;
    fn ClearTimerClientEventHandler(&self) -> Result<()>;
}

Required Methods§

fn OnUpdate(&self, timenow: f64) -> Result<UI_ANIMATION_UPDATE_RESULT>

fn SetTimerClientEventHandler( &self, handler: Option<&IUIAnimationTimerClientEventHandler>, ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§