From 88afaf5f94f7253ab3abc7ae1d358eb5f45975a7 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 29 Nov 2022 12:14:14 +0100 Subject: [PATCH] Sort --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cce42a7..bccb735 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,8 +110,8 @@ impl Iterator for UUIDv6Iterator { } impl IntoIterator for UUIDv6 { - type Item = String; type IntoIter = UUIDv6Iterator; + type Item = String; fn into_iter(self) -> Self::IntoIter { UUIDv6Iterator { uuid: self }