pub struct UpdateEmailAddress {
pub id: String,
pub is_primary: Option<bool>,
pub is_verified: Option<bool>,
pub verification_token: Option<Option<String>>,
pub verification_token_expired_at: Option<Option<DateTime<Utc>>>,
pub verified_at: Option<Option<DateTime<Utc>>>,
}Fields§
§id: String§is_primary: Option<bool>§is_verified: Option<bool>§verification_token: Option<Option<String>>§verification_token_expired_at: Option<Option<DateTime<Utc>>>§verified_at: Option<Option<DateTime<Utc>>>Trait Implementations§
Source§impl Clone for UpdateEmailAddress
impl Clone for UpdateEmailAddress
Source§fn clone(&self) -> UpdateEmailAddress
fn clone(&self) -> UpdateEmailAddress
Returns a copy 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 UpdateEmailAddress
impl RefUnwindSafe for UpdateEmailAddress
impl Send for UpdateEmailAddress
impl Sync for UpdateEmailAddress
impl Unpin for UpdateEmailAddress
impl UnwindSafe for UpdateEmailAddress
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