Trait IUIAnimationTimerUpdateHandler_Impl
pub trait IUIAnimationTimerUpdateHandler_Impl: IUnknownImpl {
// Required methods
fn OnUpdate(&self, timenow: f64) -> Result<UI_ANIMATION_UPDATE_RESULT>;
fn SetTimerClientEventHandler(
&self,
handler: Ref<'_, IUIAnimationTimerClientEventHandler>,
) -> Result<()>;
fn ClearTimerClientEventHandler(&self) -> Result<()>;
}
Required Methods§
fn OnUpdate(&self, timenow: f64) -> Result<UI_ANIMATION_UPDATE_RESULT>
fn SetTimerClientEventHandler( &self, handler: Ref<'_, IUIAnimationTimerClientEventHandler>, ) -> Result<()>
fn ClearTimerClientEventHandler(&self) -> Result<()>
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.