pub struct EmailSubdir {
pub first_email: Option<usize>,
pub last_email: Option<usize>,
pub subdir: String,
pub full_path: String,
pub rel_path_to_top: String,
pub count: i32,
pub description: Option<String>,
pub a_date: i64,
}Fields§
§first_email: Option<usize>§last_email: Option<usize>§subdir: String§full_path: String§rel_path_to_top: String§count: i32§description: Option<String>§a_date: i64Trait Implementations§
Source§impl Clone for EmailSubdir
impl Clone for EmailSubdir
Source§fn clone(&self) -> EmailSubdir
fn clone(&self) -> EmailSubdir
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 moreAuto Trait Implementations§
impl Freeze for EmailSubdir
impl RefUnwindSafe for EmailSubdir
impl Send for EmailSubdir
impl Sync for EmailSubdir
impl Unpin for EmailSubdir
impl UnsafeUnpin for EmailSubdir
impl UnwindSafe for EmailSubdir
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