cidre 0.9.1

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{arc, define_obj_type, ns, objc};

define_obj_type!(
    #[doc(alias = "WKProcessPool")]
    pub ProcessPool(ns::Id),
    WK_PROCESS_POOL
);

#[link(name = "wk", kind = "static")]
unsafe extern "C" {
    static WK_PROCESS_POOL: &'static objc::Class<ProcessPool>;
}