rust-macios 0.4.2

Apple Frameworks for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{object, objective_c_runtime::traits::PNSObject};

use super::interface_impl;

object! {
    /// An abstract class that forms the basis of event and command processing
    /// in AppKit.
    unsafe pub struct NSResponder;
}

#[interface_impl(NSObject)]
impl NSResponder {}