From 493e21a274f99cfcc29559de89cf5ca1c11cc35c Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 17 Nov 2025 10:41:31 -0800 Subject: [PATCH 1/1] slice_concat_trait will never be stabilized. :( From #27747: "We discussed this in the libs team and the consensus is that we will likely never stabilize the Concat and Join traits: these will remain implementation details of the join and concat methods." --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 23667a1..11ee0c3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -320,7 +320,7 @@ fn render_instances(instances: &[Option], mark: Option<&str>) -> HTML { } HTML( out.into_iter() - .map(|html| html.0) // Waiting for slice_concat_trait to stabilize + .map(|html| html.0) .collect::>() .join(" "), ) @@ -380,7 +380,7 @@ fn render_all_leftovers(config: &Config, row: &Row) -> HTML { row.entries.get(notcol).expect("Key vanished?!"), ) }) - .map(|html| html.0) // Waiting for slice_concat_trait to stabilize + .map(|html| html.0) .collect::>() .join(", "), ) -- 2.50.1