[][src]Struct box2d_rs::b2_timer::B2timer

pub struct B2timer { /* fields omitted */ }

Implementations

impl B2timer[src]

Timer for profiling. This has platform specific code and may not work on every platform.

pub fn reset(&mut self)[src]

reset the timer.

pub fn get_milliseconds(&self) -> f32[src]

Get the time since construction or the last reset.

pub fn precise_time_ns(&self) -> u64[src]

Trait Implementations

impl Default for B2timer[src]

pub fn default() -> Self[src]

Constructor

Auto Trait Implementations

impl RefUnwindSafe for B2timer

impl Send for B2timer

impl Sync for B2timer

impl Unpin for B2timer

impl UnwindSafe for B2timer

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.