mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
14 lines
212 B
Rust
14 lines
212 B
Rust
pub struct Document;
|
|
|
|
impl Document {
|
|
pub fn set_title(title: &str) {}
|
|
|
|
pub fn on_blur<F>(f: F) {}
|
|
|
|
pub fn on_focus<F>(f: F) {}
|
|
|
|
pub fn on_key_up<F>(f: F) {}
|
|
|
|
pub fn on_key_down<F>(f: F) {}
|
|
}
|