We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e59bf7e commit 3df67b4Copy full SHA for 3df67b4
cryptoki/src/session/mod.rs
@@ -91,7 +91,7 @@ pub enum UserType {
91
/// Context Specific
92
ContextSpecific,
93
/// Vendor extension
94
- VendorExtension(u32)
+ VendorExtension(u32),
95
}
96
97
impl From<UserType> for CK_USER_TYPE {
@@ -100,7 +100,7 @@ impl From<UserType> for CK_USER_TYPE {
100
UserType::So => CKU_SO,
101
UserType::User => CKU_USER,
102
UserType::ContextSpecific => CKU_CONTEXT_SPECIFIC,
103
- UserType::VendorExtension(n) => n as CK_USER_TYPE
+ UserType::VendorExtension(n) => n as CK_USER_TYPE,
104
105
106
0 commit comments