Skip to content

Commit

Permalink
Remove implementation of fmt::Display for Appended
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfehler committed Jul 14, 2022
1 parent afe86f1 commit 568f5f3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/types/appended.rs
Original file line number Diff line number Diff line change
@@ -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).
Expand Down Expand Up @@ -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,
)
}
}

0 comments on commit 568f5f3

Please sign in to comment.