]> git.proxmox.com Git - rustc.git/blame - vendor/windows-sys/src/Windows/Foundation/Collections/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Foundation / Collections / mod.rs
CommitLineData
04454e1e 1#[doc = "*Required features: `\"Foundation_Collections\"`*"]
5e7ed085
FG
2#[repr(transparent)]
3pub struct CollectionChange(pub i32);
4impl CollectionChange {
5 pub const Reset: Self = Self(0i32);
6 pub const ItemInserted: Self = Self(1i32);
7 pub const ItemRemoved: Self = Self(2i32);
8 pub const ItemChanged: Self = Self(3i32);
9}
10impl ::core::marker::Copy for CollectionChange {}
11impl ::core::clone::Clone for CollectionChange {
12 fn clone(&self) -> Self {
13 *self
14 }
15}
16pub type IIterable = *mut ::core::ffi::c_void;
17pub type IIterator = *mut ::core::ffi::c_void;
18pub type IKeyValuePair = *mut ::core::ffi::c_void;
19pub type IMap = *mut ::core::ffi::c_void;
20pub type IMapChangedEventArgs = *mut ::core::ffi::c_void;
21pub type IMapView = *mut ::core::ffi::c_void;
22pub type IObservableMap = *mut ::core::ffi::c_void;
23pub type IObservableVector = *mut ::core::ffi::c_void;
24pub type IPropertySet = *mut ::core::ffi::c_void;
25pub type IVector = *mut ::core::ffi::c_void;
26pub type IVectorChangedEventArgs = *mut ::core::ffi::c_void;
27pub type IVectorView = *mut ::core::ffi::c_void;
28pub type MapChangedEventHandler = *mut ::core::ffi::c_void;
29pub type PropertySet = *mut ::core::ffi::c_void;
30pub type StringMap = *mut ::core::ffi::c_void;
31pub type ValueSet = *mut ::core::ffi::c_void;
32pub type VectorChangedEventHandler = *mut ::core::ffi::c_void;