pub trait IUIAnimationTimerEventHandler_Impl: Sized {
    // Required methods
    fn OnPreUpdate(&self) -> Result<()>;
    fn OnPostUpdate(&self) -> Result<()>;
    fn OnRenderingTooSlow(&self, framespersecond: u32) -> Result<()>;
}

Required Methods§

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

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

fn OnRenderingTooSlow(&self, framespersecond: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§