apple-security 2.9.4

Apple Security Framework bindings for macOS and iOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Access functionality.

use core_foundation::base::TCFType;
use apple_security_sys::access::SecAccessGetTypeID;
use apple_security_sys::base::SecAccessRef;

declare_TCFType! {
    /// A type representing access settings.
    SecAccess, SecAccessRef
}
impl_TCFType!(SecAccess, SecAccessRef, SecAccessGetTypeID);

unsafe impl Sync for SecAccess {}
unsafe impl Send for SecAccess {}