pub struct VerifySession {Show 13 fields
pub id: String,
pub url: String,
pub status: String,
pub success_url: String,
pub cancel_url: Option<String>,
pub brand_name: Option<String>,
pub brand_color: Option<String>,
pub phone: Option<String>,
pub verification_id: Option<String>,
pub token: Option<String>,
pub metadata: Option<HashMap<String, Value>>,
pub expires_at: String,
pub created_at: String,
}Fields§
§id: String§url: String§status: String§success_url: String§cancel_url: Option<String>§brand_name: Option<String>§brand_color: Option<String>§phone: Option<String>§verification_id: Option<String>§token: Option<String>§metadata: Option<HashMap<String, Value>>§expires_at: String§created_at: StringTrait Implementations§
Source§impl Clone for VerifySession
impl Clone for VerifySession
Source§fn clone(&self) -> VerifySession
fn clone(&self) -> VerifySession
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 VerifySession
impl Debug for VerifySession
Source§impl<'de> Deserialize<'de> for VerifySession
impl<'de> Deserialize<'de> for VerifySession
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 VerifySession
impl RefUnwindSafe for VerifySession
impl Send for VerifySession
impl Sync for VerifySession
impl Unpin for VerifySession
impl UnsafeUnpin for VerifySession
impl UnwindSafe for VerifySession
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