winit 0.29.15

Cross-platform window creation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use icrate::Foundation::NSObject;
use objc2::{extern_class, mutability, ClassType};

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub(crate) struct UIResponder;

    unsafe impl ClassType for UIResponder {
        type Super = NSObject;
        type Mutability = mutability::InteriorMutable;
    }
);