summaryrefslogtreecommitdiff
path: root/crates/windows-kernel-rs/src/device.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-01-03 14:17:31 -0800
committerFuwn <[email protected]>2022-01-03 14:17:31 -0800
commit340eced7ac68ff04e33fb63a675da9491bda8680 (patch)
treeda3150942ae6ac50761b05a341094dcd650ae2f7 /crates/windows-kernel-rs/src/device.rs
parentchore(windows-kernel-rs): remove unnecessary unsafe blocks (diff)
downloaddriver-340eced7ac68ff04e33fb63a675da9491bda8680.tar.xz
driver-340eced7ac68ff04e33fb63a675da9491bda8680.zip
fix(windows-kernel-rs): simplification
Diffstat (limited to 'crates/windows-kernel-rs/src/device.rs')
-rw-r--r--crates/windows-kernel-rs/src/device.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/crates/windows-kernel-rs/src/device.rs b/crates/windows-kernel-rs/src/device.rs
index 2ccb607..5c36d3a 100644
--- a/crates/windows-kernel-rs/src/device.rs
+++ b/crates/windows-kernel-rs/src/device.rs
@@ -30,10 +30,11 @@ pub enum Access {
impl Access {
pub fn is_exclusive(&self) -> bool {
- match *self {
- Access::Exclusive => true,
- _ => false,
- }
+ // match *self {
+ // Access::Exclusive => true,
+ // _ => false,
+ // }
+ matches!(*self, Access::Exclusive)
}
}