pub struct MagicLinkEmail {
pub email: String,
pub url: String,
pub token: String,
pub metadata: Option<Value>,
}Fields§
§email: String§url: String§token: String§metadata: Option<Value>Trait Implementations§
Source§impl Clone for MagicLinkEmail
impl Clone for MagicLinkEmail
Source§fn clone(&self) -> MagicLinkEmail
fn clone(&self) -> MagicLinkEmail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MagicLinkEmail
impl Debug for MagicLinkEmail
Source§impl PartialEq for MagicLinkEmail
impl PartialEq for MagicLinkEmail
Source§fn eq(&self, other: &MagicLinkEmail) -> bool
fn eq(&self, other: &MagicLinkEmail) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MagicLinkEmail
Auto Trait Implementations§
impl Freeze for MagicLinkEmail
impl RefUnwindSafe for MagicLinkEmail
impl Send for MagicLinkEmail
impl Sync for MagicLinkEmail
impl Unpin for MagicLinkEmail
impl UnsafeUnpin for MagicLinkEmail
impl UnwindSafe for MagicLinkEmail
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