Skip to main content

rust_pop3_client/
pop3_stat.rs

1/// POP3 maildrop statistics
2pub struct Pop3Stat {
3    /// count of massages in the maildrop
4    pub message_count: u32,
5
6    /// size of the maildrop in bytes
7    pub maildrop_size: u32,
8}