Remove implementation of fmt::Display for Appended

This commit is contained in:
Conrad Hoffmann 2022-07-14 15:10:45 +02:00
parent 75e5d7cf79
commit 733340238c

View file

@ -1,5 +1,4 @@
use imap_proto::UidSetMember; use imap_proto::UidSetMember;
use std::fmt;
/// Meta-information about a message, as returned by /// Meta-information about a message, as returned by
/// [`APPEND`](https://tools.ietf.org/html/rfc3501#section-6.3.11). /// [`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,
)
}
}