security_framework/os/macos/access.rs
1#![allow(unused_imports)]
2//! Access functionality.
3use core_foundation::base::TCFType;
4use core_foundation::{declare_TCFType, impl_TCFType};
5use security_framework_sys::access::SecAccessGetTypeID;
6use security_framework_sys::base::SecAccessRef;
7
8declare_TCFType! {
9 /// A type representing access settings.
10 SecAccess, SecAccessRef
11}
12impl_TCFType!(SecAccess, SecAccessRef, SecAccessGetTypeID);
13
14unsafe impl Sync for SecAccess {}
15unsafe impl Send for SecAccess {}