Skip to main content

IDebugTimerMethods

Trait IDebugTimerMethods 

Source
pub trait IDebugTimerMethods: IDebugTimer {
    // Provided methods
    fn on_gui(self) { ... }
    fn start(self) { ... }
    fn reset(self, end_time: impl Into<f32>) { ... }
    fn set_max(self, time: impl Into<f32>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn on_gui(self)

OnGUI() overload

Source

fn start(self)

Start() overload

Source

fn reset(self, end_time: impl Into<f32>)

Reset(f32) overload

Source

fn set_max(self, time: impl Into<f32>)

SetMax(f32) overload

Source

fn ctor(self)

.ctor() overload

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.

Implementors§

Source§

impl<__T: IDebugTimer> IDebugTimerMethods for __T

Available on crate feature root-debugtimer only.