diff --git a/src/types/appended.rs b/src/types/appended.rs index c1fd915..72de85a 100644 --- a/src/types/appended.rs +++ b/src/types/appended.rs @@ -1,5 +1,4 @@ use imap_proto::UidSetMember; -use std::fmt; /// Meta-information about a message, as returned by /// [`APPEND`](https://tools.ietf.org/html/rfc3501#section-6.3.11). @@ -28,13 +27,3 @@ impl Default for Appended { } } } - -impl fmt::Display for Appended { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!( - f, - "uid_validity: {:?}, uids: {:?}", - self.uid_validity, self.uids, - ) - } -}