winit 0.24.0

Cross-platform window creation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::super::ScaleChangeArgs;

pub struct ScaleChangeDetector(());

impl ScaleChangeDetector {
    pub(crate) fn new<F>(_handler: F) -> Self
    where
        F: 'static + FnMut(ScaleChangeArgs),
    {
        // TODO: Stub, unimplemented (see web_sys for reference).
        Self(())
    }
}