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}