libfreemkv: add Clone derive to MuxAtomics

This commit is contained in:
MattJackson
2026-05-11 19:54:50 -07:00
parent 8ba9dc1c0b
commit f1df57196c
+1 -1
View File
@@ -128,7 +128,7 @@ pub use halt::Halt;
// Generic bounded producer/consumer primitive used by sweep, patch, and
// mux to overlap reads with writes via a dedicated consumer thread.
// `Pipeline::spawn(depth, sink)` spawns the consumer; `pipe.send(item)`
// `Pipeline::spawn(name, depth, sink)` spawns a named consumer; `pipe.send(item)`
// pushes one item with back-pressure; `pipe.finish()` joins the
// consumer and surfaces its `close()` output. Callers implement `Sink`
// to define per-item behaviour and end-of-stream finalisation.