pub struct ClaimableMail {
pub msg_id: i64,
pub typ: ClaimableMailType,
pub status: ClaimableStatus,
pub name: String,
pub received: Option<DateTime<Local>>,
pub claimable_until: Option<DateTime<Local>>,
}Fields§
§msg_id: i64§typ: ClaimableMailType§status: ClaimableStatus§name: String§received: Option<DateTime<Local>>§claimable_until: Option<DateTime<Local>>Trait Implementations§
Source§impl Clone for ClaimableMail
impl Clone for ClaimableMail
Source§fn clone(&self) -> ClaimableMail
fn clone(&self) -> ClaimableMail
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 ClaimableMail
impl Debug for ClaimableMail
Source§impl<'de> Deserialize<'de> for ClaimableMail
impl<'de> Deserialize<'de> for ClaimableMail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClaimableMail
impl RefUnwindSafe for ClaimableMail
impl Send for ClaimableMail
impl Sync for ClaimableMail
impl Unpin for ClaimableMail
impl UnwindSafe for ClaimableMail
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