2023-07-29 00:33:03 +02:00
|
|
|
use icrate::Foundation::NSObject;
|
|
|
|
|
use objc2::{extern_class, mutability, ClassType};
|
2022-09-08 20:30:34 +02:00
|
|
|
|
|
|
|
|
extern_class!(
|
|
|
|
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
|
|
|
|
pub(crate) struct UIResponder;
|
|
|
|
|
|
|
|
|
|
unsafe impl ClassType for UIResponder {
|
|
|
|
|
type Super = NSObject;
|
2023-07-29 00:33:03 +02:00
|
|
|
type Mutability = mutability::InteriorMutable;
|
2022-09-08 20:30:34 +02:00
|
|
|
}
|
|
|
|
|
);
|