diff options
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/mod.rs | 1 | ||||
-rw-r--r-- | src/device/wrapper.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/device/mod.rs b/src/device/mod.rs index c84faa1..e9018a4 100644 --- a/src/device/mod.rs +++ b/src/device/mod.rs @@ -28,6 +28,7 @@ pub use wrapper::DeviceWrapper; /// Available Nitrokey models. #[derive(Clone, Copy, Debug, PartialEq)] +#[non_exhaustive] pub enum Model { /// The Nitrokey Storage. Storage, diff --git a/src/device/wrapper.rs b/src/device/wrapper.rs index 69291ad..942a905 100644 --- a/src/device/wrapper.rs +++ b/src/device/wrapper.rs @@ -64,6 +64,7 @@ use crate::otp::GenerateOtp; /// /// [`connect`]: struct.Manager.html#method.connect #[derive(Debug)] +#[non_exhaustive] pub enum DeviceWrapper<'a> { /// A Nitrokey Storage device. Storage(Storage<'a>), |