pub struct ArchiveState {
pub emails: Vec<EmailInfo>,
pub subject_list: Option<Box<Header>>,
pub author_list: Option<Box<Header>>,
pub date_list: Option<Box<Header>>,
pub deleted_list: Vec<usize>,
pub reply_list: Vec<Reply>,
pub thread_list: Vec<Reply>,
pub etable: HashMap<String, Vec<usize>>,
pub msgid_table: HashMap<String, usize>,
pub folders: Vec<EmailSubdir>,
pub max_msgnum: i32,
}Fields§
§emails: Vec<EmailInfo>§subject_list: Option<Box<Header>>§date_list: Option<Box<Header>>§deleted_list: Vec<usize>§reply_list: Vec<Reply>§thread_list: Vec<Reply>§etable: HashMap<String, Vec<usize>>§msgid_table: HashMap<String, usize>§folders: Vec<EmailSubdir>§max_msgnum: i32Trait Implementations§
Source§impl Clone for ArchiveState
impl Clone for ArchiveState
Source§fn clone(&self) -> ArchiveState
fn clone(&self) -> ArchiveState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArchiveState
impl Debug for ArchiveState
Source§impl Default for ArchiveState
impl Default for ArchiveState
Source§fn default() -> ArchiveState
fn default() -> ArchiveState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ArchiveState
impl RefUnwindSafe for ArchiveState
impl Send for ArchiveState
impl Sync for ArchiveState
impl Unpin for ArchiveState
impl UnsafeUnpin for ArchiveState
impl UnwindSafe for ArchiveState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more