objc2_foundation/
user_defaults.rs

1use crate::NSUserDefaults;
2
3// Documented to be thread-safe, and should be, it's a singleton that's
4// accessible from any thread using `standardUserDefaults`.
5unsafe impl Send for NSUserDefaults {}
6unsafe impl Sync for NSUserDefaults {}