cidre 0.14.0

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::{define_obj_type, ns};

define_obj_type!(
    #[doc(alias = "SNClassifierIdentifier")]
    pub Id(ns::Id)
);

impl Id {
    #[inline]
    pub fn v1() -> &'static Id {
        unsafe { SNClassifierIdentifierVersion1 }
    }
}

#[link(name = "SoundAnalysis", kind = "framework")]
unsafe extern "C" {
    static SNClassifierIdentifierVersion1: &'static Id;
}