]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys/src/Windows/Management/Workplace/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Management / Workplace / mod.rs
1 #[doc = "*Required features: `\"Management_Workplace\"`*"]
2 #[repr(transparent)]
3 pub struct MessagingSyncPolicy(pub i32);
4 impl MessagingSyncPolicy {
5 pub const Disallowed: Self = Self(0i32);
6 pub const Allowed: Self = Self(1i32);
7 pub const Required: Self = Self(2i32);
8 }
9 impl ::core::marker::Copy for MessagingSyncPolicy {}
10 impl ::core::clone::Clone for MessagingSyncPolicy {
11 fn clone(&self) -> Self {
12 *self
13 }
14 }