]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys/src/Windows/Phone/Speech/Recognition/mod.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Phone / Speech / Recognition / mod.rs
1 #[doc = "*Required features: `\"Phone_Speech_Recognition\"`*"]
2 #[repr(transparent)]
3 pub struct SpeechRecognitionUIStatus(pub i32);
4 impl SpeechRecognitionUIStatus {
5 pub const Succeeded: Self = Self(0i32);
6 pub const Busy: Self = Self(1i32);
7 pub const Cancelled: Self = Self(2i32);
8 pub const Preempted: Self = Self(3i32);
9 pub const PrivacyPolicyDeclined: Self = Self(4i32);
10 }
11 impl ::core::marker::Copy for SpeechRecognitionUIStatus {}
12 impl ::core::clone::Clone for SpeechRecognitionUIStatus {
13 fn clone(&self) -> Self {
14 *self
15 }
16 }