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.
unused
1 parent fe66ea5 commit 3cd6fd9Copy full SHA for 3cd6fd9
src/context/thread_safe.rs
@@ -27,6 +27,9 @@ pub struct DetachedFromClient;
27
28
pub struct ThreadSafeContext<B> {
29
pub(crate) ctx: *mut raw::RedisModuleCtx,
30
+
31
+ /// This field is only used implicitly by `Drop`, so avoid a compiler warning
32
+ #[allow(dead_code)]
33
blocked_client: B,
34
}
35
0 commit comments