Remove implementation of fmt::Display for Appended
This commit is contained in:
parent
75e5d7cf79
commit
733340238c
1 changed files with 0 additions and 11 deletions
|
|
@ -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,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue