From 5091ab1d4beae5ecdcf38abdf84f8c3ebb618a4c Mon Sep 17 00:00:00 2001 From: soruh Date: Fri, 31 Jul 2026 03:36:00 +0200 Subject: [PATCH] Mark erased Debug output non-exhaustive --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9a283b0..2e1e1ae 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,7 +58,7 @@ impl fmt::Debug for TypeErasedVec { .field("layout", &self.layout) .field("length", &self.parts.len) .field("capacity", &self.parts.cap) - .finish() + .finish_non_exhaustive() } }