From 1a54a9f88a11260cfce4c9a9f5aa3299a2dfa7c8 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Sat, 23 Apr 2022 18:39:55 +1000 Subject: [PATCH] note that the Error display impl is public API --- src/error.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/error.rs b/src/error.rs index 7335e42c..6c3a4f43 100644 --- a/src/error.rs +++ b/src/error.rs @@ -127,6 +127,7 @@ impl<'a> InvalidUuid<'a> { } } +// NOTE: This impl is part of the public API. Breaking changes to it should be carefully considered impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self.0 {