clippy: fix doc_lazy_continuation on TopicListItem.runs_failed
ci / gates (push) Successful in 6s
ci / frontend (push) Successful in 25s
ci / rust (push) Successful in 3m59s
ci / e2e (push) Skipped
ci / publish (push) Successful in 4m9s

This commit is contained in:
Omar Sobh
2026-07-15 17:12:16 -07:00
parent f70f6c679e
commit 671d3ac4f0
+5 -4
View File
@@ -408,10 +408,11 @@ pub struct TopicListItem {
pub updated_at: String,
/// queued + running topology_runs bound to this topic.
pub runs_in_flight: i64,
/// failed runs since the last successful run (or all-time if none).
/// > 0 with `runs_in_flight == 0` and `status == "processing"` is
/// the errored-but-not-terminal state — frontend swaps the spinner
/// for an error icon and offers a rerun.
/// Failed runs since the last successful run (or all-time if
/// none). A positive value combined with `runs_in_flight == 0`
/// and `status == "processing"` is the errored-but-not-terminal
/// state — frontend swaps the spinner for an error icon and
/// offers a rerun.
pub runs_failed: i64,
}