Skip to main content

rust_pop3_client/
pop3_message_info.rs

1/// POP3 message info
2pub struct Pop3MessageInfo {
3    /// numerical Id of the message used for various commands
4    pub message_id: u32,
5
6    /// size of the message in bytes
7    pub message_size: u32,
8}