email-lib 0.27.0

Cross-platform, asynchronous Rust library to manage emails
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Clone, Debug, Default, Eq, PartialEq)]
#[cfg_attr(
    feature = "derive",
    derive(serde::Serialize, serde::Deserialize),
    serde(rename_all = "kebab-case")
)]
pub struct FolderListConfig {
    /// Define the size of a page when listing folders.
    ///
    /// A page size of 0 disables the pagination and displays all
    /// available folders.
    pub page_size: Option<usize>,
}