We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f70d0 commit 5ea9619Copy full SHA for 5ea9619
.github/workflows/ci.yml
@@ -13,6 +13,7 @@ on:
13
env:
14
RUST_TOOLCHAIN: nightly
15
TOOLCHAIN_PROFILE: minimal
16
+ CARGO_TERM_COLOR: always
17
18
jobs:
19
lints:
.gitignore
@@ -6,4 +6,7 @@ coredump*
6
/coverage
7
8
# visual studio code files
9
-.vscode
+.vscode
10
+
11
+# idea files
12
+.idea
monoio/src/driver/uring/lifecycle.rs
@@ -17,6 +17,7 @@ pub(crate) enum Lifecycle {
/// The submitter no longer has interest in the operation result. The state
/// must be passed to the driver and held until the operation completes.
20
+ #[allow(dead_code)]
21
Ignored(Box<dyn std::any::Any>),
22
23
/// The operation has completed.
0 commit comments