v0.18.21: format code

This commit is contained in:
2026-05-12 09:18:52 -07:00
parent fde7c6431b
commit fc9912d79e
3 changed files with 54 additions and 57 deletions
+4 -1
View File
@@ -27,4 +27,7 @@ pub(crate) use writeback_file::WritebackFile;
// caller — the targeted `#[allow]` keeps the re-export visible without // caller — the targeted `#[allow]` keeps the re-export visible without
// dragging the rest of the module under `dead_code`. // dragging the rest of the module under `dead_code`.
#[allow(unused_imports)] #[allow(unused_imports)]
pub use pipeline::{DEFAULT_PIPELINE_DEPTH, Flow, Pipeline, READ_PIPELINE_DEPTH, Sink, WRITE_PIPELINE_DEPTH, WRITE_THROUGH_DEPTH}; pub use pipeline::{
DEFAULT_PIPELINE_DEPTH, Flow, Pipeline, READ_PIPELINE_DEPTH, Sink, WRITE_PIPELINE_DEPTH,
WRITE_THROUGH_DEPTH,
};
+2 -8
View File
@@ -155,10 +155,7 @@ impl<I: Send + 'static, R: Send + 'static> Pipeline<I, R> {
while let Ok(item) = rx.recv() { while let Ok(item) = rx.recv() {
if debug_enabled() { if debug_enabled() {
tracing::debug!( tracing::debug!("Pipeline receive: item={}", std::any::type_name::<I>());
"Pipeline receive: item={}",
std::any::type_name::<I>()
);
} }
let apply_start = std::time::Instant::now(); let apply_start = std::time::Instant::now();
@@ -179,10 +176,7 @@ impl<I: Send + 'static, R: Send + 'static> Pipeline<I, R> {
} }
Err(e) => { Err(e) => {
if debug_enabled() { if debug_enabled() {
tracing::debug!( tracing::debug!("Pipeline: apply error, stopping, err={:?}", e);
"Pipeline: apply error, stopping, err={:?}",
e
);
} }
first_err = Some(e); first_err = Some(e);
} }
+12 -12
View File
@@ -72,18 +72,18 @@
//! | E7xxx | AACS errors | //! | E7xxx | AACS errors |
pub mod aacs; pub mod aacs;
pub(crate) mod clpi; pub(crate) mod clpi;
pub mod css; pub mod css;
pub mod decrypt; pub mod decrypt;
pub mod disc; pub mod disc;
pub mod drive; pub mod drive;
pub mod error; pub mod error;
pub mod event; pub mod event;
pub mod halt; pub mod halt;
pub(crate) mod identity; pub(crate) mod identity;
pub(crate) mod ifo; pub(crate) mod ifo;
pub mod io; pub mod io;
pub mod keydb; pub mod keydb;
pub mod labels; pub mod labels;
pub(crate) mod mpls; pub(crate) mod mpls;
pub mod mux; pub mod mux;