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 1f72f1a commit 7377844Copy full SHA for 7377844
cryptoki/src/session/mod.rs
@@ -32,8 +32,6 @@ pub use session_info::{SessionInfo, SessionState};
32
pub struct Session {
33
handle: CK_SESSION_HANDLE,
34
client: Pkcs11,
35
- #[allow(dead_code)]
36
- search_active: bool,
37
// This is not used but to prevent Session to automatically implement Send and Sync
38
_guard: PhantomData<*mut u32>,
39
}
@@ -65,7 +63,6 @@ impl Session {
65
63
Session {
66
64
handle,
67
client,
68
- search_active: false,
69
_guard: PhantomData,
70
71
0 commit comments