From df7c467005756433b2627b766bd086efda8689f4 Mon Sep 17 00:00:00 2001 From: Mica White Date: Tue, 16 Jul 2024 17:02:42 -0400 Subject: Fix trait bounds for LockCollection::from --- src/collection/boxed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/collection/boxed.rs') diff --git a/src/collection/boxed.rs b/src/collection/boxed.rs index 375564c..a12a690 100644 --- a/src/collection/boxed.rs +++ b/src/collection/boxed.rs @@ -102,7 +102,7 @@ impl Default for BoxedLockCollection { } } -impl From for BoxedLockCollection { +impl From for BoxedLockCollection { fn from(value: L) -> Self { Self::new(value) } -- cgit v1.2.3