Skip to content

Commit f76dea0

Browse files
authored
Update Windows metadata to 10.0.26100.1 (#3136)
1 parent 62ccc94 commit f76dea0

File tree

38 files changed

+5525
-54
lines changed

38 files changed

+5525
-54
lines changed
39.5 KB
Binary file not shown.

crates/libs/bindgen/default/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ like [ILSpy](https://github.com/icsharpcode/ILSpy).
1515
## `Windows.winmd`
1616

1717
- Source: <https://www.nuget.org/packages/Microsoft.Windows.SDK.Contracts>
18-
- Version: `10.0.22621.2428`
18+
- Version: `10.0.26100.1`
1919

2020
The `Windows.winmd` file was created by merging the .winmd files from the last nuget package as follows:
2121

crates/libs/sys/features.json

+1-1
Large diffs are not rendered by default.

crates/libs/windows/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ ApplicationModel_ExtendedExecution = ["ApplicationModel"]
6767
ApplicationModel_ExtendedExecution_Foreground = ["ApplicationModel_ExtendedExecution"]
6868
ApplicationModel_Holographic = ["ApplicationModel"]
6969
ApplicationModel_LockScreen = ["ApplicationModel"]
70+
ApplicationModel_PackageExtensions = ["ApplicationModel"]
7071
ApplicationModel_Payments = ["ApplicationModel"]
7172
ApplicationModel_Payments_Provider = ["ApplicationModel_Payments"]
7273
ApplicationModel_Preview = ["ApplicationModel"]
@@ -188,6 +189,7 @@ Management_Core = ["Management"]
188189
Management_Deployment = ["Management"]
189190
Management_Deployment_Preview = ["Management_Deployment"]
190191
Management_Policies = ["Management"]
192+
Management_Setup = ["Management"]
191193
Management_Update = ["Management"]
192194
Management_Workplace = ["Management"]
193195
Media = ["Foundation"]

crates/libs/windows/features.json

+1-1
Large diffs are not rendered by default.

crates/libs/windows/src/Windows/ApplicationModel/AppExtensions/mod.rs

+60
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,23 @@ pub struct IAppExtension2_Vtbl {
2828
pub base__: windows_core::IInspectable_Vtbl,
2929
pub AppUserModelId: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit<windows_core::HSTRING>) -> windows_core::HRESULT,
3030
}
31+
windows_core::imp::define_interface!(IAppExtension3, IAppExtension3_Vtbl, 0x5923c101_aa38_4009_84d9_5b54a0df30ae);
32+
impl windows_core::RuntimeType for IAppExtension3 {
33+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
34+
}
35+
#[repr(C)]
36+
pub struct IAppExtension3_Vtbl {
37+
pub base__: windows_core::IInspectable_Vtbl,
38+
#[cfg(feature = "Foundation_Collections")]
39+
pub GetExtensionProperties: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT,
40+
#[cfg(not(feature = "Foundation_Collections"))]
41+
GetExtensionProperties: usize,
42+
pub GetPublicPath: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit<windows_core::HSTRING>) -> windows_core::HRESULT,
43+
#[cfg(feature = "Storage")]
44+
pub GetPublicFolder: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT,
45+
#[cfg(not(feature = "Storage"))]
46+
GetPublicFolder: usize,
47+
}
3148
windows_core::imp::define_interface!(IAppExtensionCatalog, IAppExtensionCatalog_Vtbl, 0x97872032_8426_4ad1_9084_92e88c2da200);
3249
impl windows_core::RuntimeType for IAppExtensionCatalog {
3350
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
@@ -51,6 +68,18 @@ pub struct IAppExtensionCatalog_Vtbl {
5168
pub PackageStatusChanged: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut super::super::Foundation::EventRegistrationToken) -> windows_core::HRESULT,
5269
pub RemovePackageStatusChanged: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::EventRegistrationToken) -> windows_core::HRESULT,
5370
}
71+
windows_core::imp::define_interface!(IAppExtensionCatalog2, IAppExtensionCatalog2_Vtbl, 0x50056eba_58b6_4147_b5a5_8feca6dfb49d);
72+
impl windows_core::RuntimeType for IAppExtensionCatalog2 {
73+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
74+
}
75+
#[repr(C)]
76+
pub struct IAppExtensionCatalog2_Vtbl {
77+
pub base__: windows_core::IInspectable_Vtbl,
78+
#[cfg(feature = "Foundation_Collections")]
79+
pub FindAll: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT,
80+
#[cfg(not(feature = "Foundation_Collections"))]
81+
FindAll: usize,
82+
}
5483
windows_core::imp::define_interface!(IAppExtensionCatalogStatics, IAppExtensionCatalogStatics_Vtbl, 0x3c36668a_5f18_4f0b_9ce5_cab61d196f11);
5584
impl windows_core::RuntimeType for IAppExtensionCatalogStatics {
5685
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
@@ -181,6 +210,29 @@ impl AppExtension {
181210
(windows_core::Interface::vtable(this).AppUserModelId)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
182211
}
183212
}
213+
#[cfg(feature = "Foundation_Collections")]
214+
pub fn GetExtensionProperties(&self) -> windows_core::Result<super::super::Foundation::Collections::IPropertySet> {
215+
let this = &windows_core::Interface::cast::<IAppExtension3>(self)?;
216+
unsafe {
217+
let mut result__ = core::mem::zeroed();
218+
(windows_core::Interface::vtable(this).GetExtensionProperties)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
219+
}
220+
}
221+
pub fn GetPublicPath(&self) -> windows_core::Result<windows_core::HSTRING> {
222+
let this = &windows_core::Interface::cast::<IAppExtension3>(self)?;
223+
unsafe {
224+
let mut result__ = core::mem::zeroed();
225+
(windows_core::Interface::vtable(this).GetPublicPath)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
226+
}
227+
}
228+
#[cfg(feature = "Storage")]
229+
pub fn GetPublicFolder(&self) -> windows_core::Result<super::super::Storage::StorageFolder> {
230+
let this = &windows_core::Interface::cast::<IAppExtension3>(self)?;
231+
unsafe {
232+
let mut result__ = core::mem::zeroed();
233+
(windows_core::Interface::vtable(this).GetPublicFolder)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
234+
}
235+
}
184236
}
185237
impl windows_core::RuntimeType for AppExtension {
186238
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_class::<Self, IAppExtension>();
@@ -284,6 +336,14 @@ impl AppExtensionCatalog {
284336
let this = self;
285337
unsafe { (windows_core::Interface::vtable(this).RemovePackageStatusChanged)(windows_core::Interface::as_raw(this), token).ok() }
286338
}
339+
#[cfg(feature = "Foundation_Collections")]
340+
pub fn FindAll(&self) -> windows_core::Result<super::super::Foundation::Collections::IVectorView<AppExtension>> {
341+
let this = &windows_core::Interface::cast::<IAppExtensionCatalog2>(self)?;
342+
unsafe {
343+
let mut result__ = core::mem::zeroed();
344+
(windows_core::Interface::vtable(this).FindAll)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
345+
}
346+
}
287347
pub fn Open(appextensionname: &windows_core::HSTRING) -> windows_core::Result<AppExtensionCatalog> {
288348
Self::IAppExtensionCatalogStatics(|this| unsafe {
289349
let mut result__ = core::mem::zeroed();

crates/libs/windows/src/Windows/ApplicationModel/Background/mod.rs

+135
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,27 @@ pub struct IBackgroundTaskBuilder5_Vtbl {
236236
pub base__: windows_core::IInspectable_Vtbl,
237237
pub SetTaskEntryPointClsid: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::GUID) -> windows_core::HRESULT,
238238
}
239+
windows_core::imp::define_interface!(IBackgroundTaskBuilder6, IBackgroundTaskBuilder6_Vtbl, 0x80b47b17_ec8b_5653_850b_7508a01f52e7);
240+
impl windows_core::RuntimeType for IBackgroundTaskBuilder6 {
241+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
242+
}
243+
#[repr(C)]
244+
pub struct IBackgroundTaskBuilder6_Vtbl {
245+
pub base__: windows_core::IInspectable_Vtbl,
246+
pub AllowRunningTaskInStandby: unsafe extern "system" fn(*mut core::ffi::c_void, *mut bool) -> windows_core::HRESULT,
247+
pub SetAllowRunningTaskInStandby: unsafe extern "system" fn(*mut core::ffi::c_void, bool) -> windows_core::HRESULT,
248+
pub Validate: unsafe extern "system" fn(*mut core::ffi::c_void, *mut bool) -> windows_core::HRESULT,
249+
pub Register: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit<windows_core::HSTRING>, *mut *mut core::ffi::c_void) -> windows_core::HRESULT,
250+
}
251+
windows_core::imp::define_interface!(IBackgroundTaskBuilderStatics, IBackgroundTaskBuilderStatics_Vtbl, 0xd1eb5046_06f2_55b4_9bb7_a6457ebf3300);
252+
impl windows_core::RuntimeType for IBackgroundTaskBuilderStatics {
253+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
254+
}
255+
#[repr(C)]
256+
pub struct IBackgroundTaskBuilderStatics_Vtbl {
257+
pub base__: windows_core::IInspectable_Vtbl,
258+
pub IsRunningTaskInStandbySupported: unsafe extern "system" fn(*mut core::ffi::c_void, *mut bool) -> windows_core::HRESULT,
259+
}
239260
windows_core::imp::define_interface!(IBackgroundTaskCompletedEventArgs, IBackgroundTaskCompletedEventArgs_Vtbl, 0x565d25cf_f209_48f4_9967_2b184f7bfbf0);
240261
impl windows_core::RuntimeType for IBackgroundTaskCompletedEventArgs {
241262
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
@@ -741,6 +762,16 @@ pub struct IBackgroundTaskRegistration3_Vtbl {
741762
pub base__: windows_core::IInspectable_Vtbl,
742763
pub TaskGroup: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT,
743764
}
765+
windows_core::imp::define_interface!(IBackgroundTaskRegistration4, IBackgroundTaskRegistration4_Vtbl, 0x169c09c9_b0de_5576_a05b_a02067989879);
766+
impl windows_core::RuntimeType for IBackgroundTaskRegistration4 {
767+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
768+
}
769+
#[repr(C)]
770+
pub struct IBackgroundTaskRegistration4_Vtbl {
771+
pub base__: windows_core::IInspectable_Vtbl,
772+
pub TaskLastThrottledInStandbyTimestamp: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::DateTime) -> windows_core::HRESULT,
773+
pub AppEnergyUsePredictionContribution: unsafe extern "system" fn(*mut core::ffi::c_void, *mut f64) -> windows_core::HRESULT,
774+
}
744775
windows_core::imp::define_interface!(IBackgroundTaskRegistrationGroup, IBackgroundTaskRegistrationGroup_Vtbl, 0x2ab1919a_871b_4167_8a76_055cd67b5b23);
745776
impl windows_core::RuntimeType for IBackgroundTaskRegistrationGroup {
746777
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
@@ -820,6 +851,17 @@ pub struct IBackgroundWorkCostStatics_Vtbl {
820851
pub base__: windows_core::IInspectable_Vtbl,
821852
pub CurrentBackgroundWorkCost: unsafe extern "system" fn(*mut core::ffi::c_void, *mut BackgroundWorkCostValue) -> windows_core::HRESULT,
822853
}
854+
windows_core::imp::define_interface!(IBackgroundWorkCostStatics2, IBackgroundWorkCostStatics2_Vtbl, 0xd868c976_81f6_57c8_ab2b_400b749e21d6);
855+
impl windows_core::RuntimeType for IBackgroundWorkCostStatics2 {
856+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
857+
}
858+
#[repr(C)]
859+
pub struct IBackgroundWorkCostStatics2_Vtbl {
860+
pub base__: windows_core::IInspectable_Vtbl,
861+
pub AppEnergyUseLevel: unsafe extern "system" fn(*mut core::ffi::c_void, *mut EnergyUseLevel) -> windows_core::HRESULT,
862+
pub AppEnergyUsePrediction: unsafe extern "system" fn(*mut core::ffi::c_void, *mut EnergyUseLevel) -> windows_core::HRESULT,
863+
pub AppLastThrottledInStandbyTimestamp: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::DateTime) -> windows_core::HRESULT,
864+
}
823865
windows_core::imp::define_interface!(IBluetoothLEAdvertisementPublisherTrigger, IBluetoothLEAdvertisementPublisherTrigger_Vtbl, 0xab3e2612_25d3_48ae_8724_d81877ae6129);
824866
impl windows_core::RuntimeType for IBluetoothLEAdvertisementPublisherTrigger {
825867
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_interface::<Self>();
@@ -2005,6 +2047,42 @@ impl BackgroundTaskBuilder {
20052047
let this = &windows_core::Interface::cast::<IBackgroundTaskBuilder5>(self)?;
20062048
unsafe { (windows_core::Interface::vtable(this).SetTaskEntryPointClsid)(windows_core::Interface::as_raw(this), taskentrypoint).ok() }
20072049
}
2050+
pub fn AllowRunningTaskInStandby(&self) -> windows_core::Result<bool> {
2051+
let this = &windows_core::Interface::cast::<IBackgroundTaskBuilder6>(self)?;
2052+
unsafe {
2053+
let mut result__ = core::mem::zeroed();
2054+
(windows_core::Interface::vtable(this).AllowRunningTaskInStandby)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2055+
}
2056+
}
2057+
pub fn SetAllowRunningTaskInStandby(&self, value: bool) -> windows_core::Result<()> {
2058+
let this = &windows_core::Interface::cast::<IBackgroundTaskBuilder6>(self)?;
2059+
unsafe { (windows_core::Interface::vtable(this).SetAllowRunningTaskInStandby)(windows_core::Interface::as_raw(this), value).ok() }
2060+
}
2061+
pub fn Validate(&self) -> windows_core::Result<bool> {
2062+
let this = &windows_core::Interface::cast::<IBackgroundTaskBuilder6>(self)?;
2063+
unsafe {
2064+
let mut result__ = core::mem::zeroed();
2065+
(windows_core::Interface::vtable(this).Validate)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2066+
}
2067+
}
2068+
pub fn Register2(&self, taskname: &windows_core::HSTRING) -> windows_core::Result<BackgroundTaskRegistration> {
2069+
let this = &windows_core::Interface::cast::<IBackgroundTaskBuilder6>(self)?;
2070+
unsafe {
2071+
let mut result__ = core::mem::zeroed();
2072+
(windows_core::Interface::vtable(this).Register)(windows_core::Interface::as_raw(this), core::mem::transmute_copy(taskname), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
2073+
}
2074+
}
2075+
pub fn IsRunningTaskInStandbySupported() -> windows_core::Result<bool> {
2076+
Self::IBackgroundTaskBuilderStatics(|this| unsafe {
2077+
let mut result__ = core::mem::zeroed();
2078+
(windows_core::Interface::vtable(this).IsRunningTaskInStandbySupported)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2079+
})
2080+
}
2081+
#[doc(hidden)]
2082+
pub fn IBackgroundTaskBuilderStatics<R, F: FnOnce(&IBackgroundTaskBuilderStatics) -> windows_core::Result<R>>(callback: F) -> windows_core::Result<R> {
2083+
static SHARED: windows_core::imp::FactoryCache<BackgroundTaskBuilder, IBackgroundTaskBuilderStatics> = windows_core::imp::FactoryCache::new();
2084+
SHARED.call(callback)
2085+
}
20082086
}
20092087
impl windows_core::RuntimeType for BackgroundTaskBuilder {
20102088
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::for_class::<Self, IBackgroundTaskBuilder>();
@@ -2165,6 +2243,20 @@ impl BackgroundTaskRegistration {
21652243
(windows_core::Interface::vtable(this).TaskGroup)(windows_core::Interface::as_raw(this), &mut result__).and_then(|| windows_core::Type::from_abi(result__))
21662244
}
21672245
}
2246+
pub fn TaskLastThrottledInStandbyTimestamp(&self) -> windows_core::Result<super::super::Foundation::DateTime> {
2247+
let this = &windows_core::Interface::cast::<IBackgroundTaskRegistration4>(self)?;
2248+
unsafe {
2249+
let mut result__ = core::mem::zeroed();
2250+
(windows_core::Interface::vtable(this).TaskLastThrottledInStandbyTimestamp)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2251+
}
2252+
}
2253+
pub fn AppEnergyUsePredictionContribution(&self) -> windows_core::Result<f64> {
2254+
let this = &windows_core::Interface::cast::<IBackgroundTaskRegistration4>(self)?;
2255+
unsafe {
2256+
let mut result__ = core::mem::zeroed();
2257+
(windows_core::Interface::vtable(this).AppEnergyUsePredictionContribution)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2258+
}
2259+
}
21682260
#[cfg(feature = "Foundation_Collections")]
21692261
pub fn AllTasks() -> windows_core::Result<super::super::Foundation::Collections::IMapView<windows_core::GUID, IBackgroundTaskRegistration>> {
21702262
Self::IBackgroundTaskRegistrationStatics(|this| unsafe {
@@ -2288,11 +2380,34 @@ impl BackgroundWorkCost {
22882380
(windows_core::Interface::vtable(this).CurrentBackgroundWorkCost)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
22892381
})
22902382
}
2383+
pub fn AppEnergyUseLevel() -> windows_core::Result<EnergyUseLevel> {
2384+
Self::IBackgroundWorkCostStatics2(|this| unsafe {
2385+
let mut result__ = core::mem::zeroed();
2386+
(windows_core::Interface::vtable(this).AppEnergyUseLevel)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2387+
})
2388+
}
2389+
pub fn AppEnergyUsePrediction() -> windows_core::Result<EnergyUseLevel> {
2390+
Self::IBackgroundWorkCostStatics2(|this| unsafe {
2391+
let mut result__ = core::mem::zeroed();
2392+
(windows_core::Interface::vtable(this).AppEnergyUsePrediction)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2393+
})
2394+
}
2395+
pub fn AppLastThrottledInStandbyTimestamp() -> windows_core::Result<super::super::Foundation::DateTime> {
2396+
Self::IBackgroundWorkCostStatics2(|this| unsafe {
2397+
let mut result__ = core::mem::zeroed();
2398+
(windows_core::Interface::vtable(this).AppLastThrottledInStandbyTimestamp)(windows_core::Interface::as_raw(this), &mut result__).map(|| result__)
2399+
})
2400+
}
22912401
#[doc(hidden)]
22922402
pub fn IBackgroundWorkCostStatics<R, F: FnOnce(&IBackgroundWorkCostStatics) -> windows_core::Result<R>>(callback: F) -> windows_core::Result<R> {
22932403
static SHARED: windows_core::imp::FactoryCache<BackgroundWorkCost, IBackgroundWorkCostStatics> = windows_core::imp::FactoryCache::new();
22942404
SHARED.call(callback)
22952405
}
2406+
#[doc(hidden)]
2407+
pub fn IBackgroundWorkCostStatics2<R, F: FnOnce(&IBackgroundWorkCostStatics2) -> windows_core::Result<R>>(callback: F) -> windows_core::Result<R> {
2408+
static SHARED: windows_core::imp::FactoryCache<BackgroundWorkCost, IBackgroundWorkCostStatics2> = windows_core::imp::FactoryCache::new();
2409+
SHARED.call(callback)
2410+
}
22962411
}
22972412
impl windows_core::RuntimeName for BackgroundWorkCost {
22982413
const NAME: &'static str = "Windows.ApplicationModel.Background.BackgroundWorkCost";
@@ -4470,6 +4585,26 @@ impl windows_core::RuntimeType for DeviceTriggerResult {
44704585
}
44714586
#[repr(transparent)]
44724587
#[derive(PartialEq, Eq, Copy, Clone, Default)]
4588+
pub struct EnergyUseLevel(pub i32);
4589+
impl EnergyUseLevel {
4590+
pub const Unknown: Self = Self(0i32);
4591+
pub const UnderHalfOfBudget: Self = Self(1i32);
4592+
pub const OverHalfOfBudget: Self = Self(2i32);
4593+
pub const OverBudget: Self = Self(3i32);
4594+
}
4595+
impl windows_core::TypeKind for EnergyUseLevel {
4596+
type TypeKind = windows_core::CopyType;
4597+
}
4598+
impl core::fmt::Debug for EnergyUseLevel {
4599+
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
4600+
f.debug_tuple("EnergyUseLevel").field(&self.0).finish()
4601+
}
4602+
}
4603+
impl windows_core::RuntimeType for EnergyUseLevel {
4604+
const SIGNATURE: windows_core::imp::ConstBuffer = windows_core::imp::ConstBuffer::from_slice(b"enum(Windows.ApplicationModel.Background.EnergyUseLevel;i4)");
4605+
}
4606+
#[repr(transparent)]
4607+
#[derive(PartialEq, Eq, Copy, Clone, Default)]
44734608
pub struct LocationTriggerType(pub i32);
44744609
impl LocationTriggerType {
44754610
pub const Geofence: Self = Self(0i32);

0 commit comments

Comments
 (0)