objc2_home_kit/generated/
HMSignificantEvents.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ptr::NonNull;
4use objc2_foundation::*;
5
6use crate::*;
7
8/// Type corresponding to significant events.
9///
10/// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmsignificantevent?language=objc)
11// NS_TYPED_EXTENSIBLE_ENUM
12pub type HMSignificantEvent = NSString;
13
14extern "C" {
15    /// Event corresponding to sunrise
16    ///
17    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmsignificanteventsunrise?language=objc)
18    pub static HMSignificantEventSunrise: &'static HMSignificantEvent;
19}
20
21extern "C" {
22    /// Event corresponding to sunset
23    ///
24    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmsignificanteventsunset?language=objc)
25    pub static HMSignificantEventSunset: &'static HMSignificantEvent;
26}