Struct sdl2::TimerSubsystem
[−]
[src]
pub struct TimerSubsystem { /* fields omitted */ }
Methods
impl TimerSubsystem
[src]
pub fn add_timer<'b, 'c>(
&'b self,
delay: u32,
callback: TimerCallback<'c>
) -> Timer<'b, 'c>
[src]
&'b self,
delay: u32,
callback: TimerCallback<'c>
) -> Timer<'b, 'c>
Constructs a new timer using the boxed closure callback
.
The timer is started immediately, it will be cancelled either:
- when the timer is dropped
- or when the callback returns a non-positive continuation interval
pub fn ticks(&mut self) -> u32
[src]
Gets the number of milliseconds elapsed since the timer subsystem was initialized.
It's recommended that you use another library for timekeeping, such as time
.
pub fn delay(&mut self, ms: u32)
[src]
Sleeps the current thread for the specified amount of milliseconds.
It's recommended that you use std::thread::sleep()
instead.