summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs78
1 files changed, 0 insertions, 78 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs
deleted file mode 100644
index 1eac284ff..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Devices/SerialCommunication/mod.rs
+++ /dev/null
@@ -1,78 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-pub type ErrorReceivedEventArgs = *mut ::core::ffi::c_void;
-pub type PinChangedEventArgs = *mut ::core::ffi::c_void;
-pub type SerialDevice = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SerialError(pub i32);
-impl SerialError {
- pub const Frame: Self = Self(0i32);
- pub const BufferOverrun: Self = Self(1i32);
- pub const ReceiveFull: Self = Self(2i32);
- pub const ReceiveParity: Self = Self(3i32);
- pub const TransmitFull: Self = Self(4i32);
-}
-impl ::core::marker::Copy for SerialError {}
-impl ::core::clone::Clone for SerialError {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SerialHandshake(pub i32);
-impl SerialHandshake {
- pub const None: Self = Self(0i32);
- pub const RequestToSend: Self = Self(1i32);
- pub const XOnXOff: Self = Self(2i32);
- pub const RequestToSendXOnXOff: Self = Self(3i32);
-}
-impl ::core::marker::Copy for SerialHandshake {}
-impl ::core::clone::Clone for SerialHandshake {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SerialParity(pub i32);
-impl SerialParity {
- pub const None: Self = Self(0i32);
- pub const Odd: Self = Self(1i32);
- pub const Even: Self = Self(2i32);
- pub const Mark: Self = Self(3i32);
- pub const Space: Self = Self(4i32);
-}
-impl ::core::marker::Copy for SerialParity {}
-impl ::core::clone::Clone for SerialParity {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SerialPinChange(pub i32);
-impl SerialPinChange {
- pub const BreakSignal: Self = Self(0i32);
- pub const CarrierDetect: Self = Self(1i32);
- pub const ClearToSend: Self = Self(2i32);
- pub const DataSetReady: Self = Self(3i32);
- pub const RingIndicator: Self = Self(4i32);
-}
-impl ::core::marker::Copy for SerialPinChange {}
-impl ::core::clone::Clone for SerialPinChange {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SerialStopBitCount(pub i32);
-impl SerialStopBitCount {
- pub const One: Self = Self(0i32);
- pub const OnePointFive: Self = Self(1i32);
- pub const Two: Self = Self(2i32);
-}
-impl ::core::marker::Copy for SerialStopBitCount {}
-impl ::core::clone::Clone for SerialStopBitCount {
- fn clone(&self) -> Self {
- *self
- }
-}