pub struct MailboxStats {
pub total_emails: usize,
pub max_capacity: usize,
}Expand description
Mailbox statistics
Fields§
§total_emails: usize§max_capacity: usizeTrait Implementations§
Source§impl Clone for MailboxStats
impl Clone for MailboxStats
Source§fn clone(&self) -> MailboxStats
fn clone(&self) -> MailboxStats
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 MailboxStats
impl RefUnwindSafe for MailboxStats
impl Send for MailboxStats
impl Sync for MailboxStats
impl Unpin for MailboxStats
impl UnwindSafe for MailboxStats
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