mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
13 lines
205 B
Rust
13 lines
205 B
Rust
use std::time::Duration;
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub struct Timeout {}
|
|
|
|
impl Timeout {
|
|
pub fn new<F>(f: F, duration: Duration) -> Timeout {
|
|
Timeout {}
|
|
}
|
|
|
|
pub fn clear(self) {}
|
|
}
|