pub struct ContinueWithVerificationUiFlow {
pub id: String,
pub url: Option<String>,
pub verifiable_address: String,
}Fields§
§id: StringThe ID of the verification flow
url: Option<String>The URL of the verification flow If this value is set, redirect the user’s browser to this URL. This value is typically unset for native clients / API flows.
verifiable_address: StringThe address that should be verified in this flow
Implementations§
Source§impl ContinueWithVerificationUiFlow
impl ContinueWithVerificationUiFlow
pub fn new( id: String, verifiable_address: String, ) -> ContinueWithVerificationUiFlow
Trait Implementations§
Source§impl Clone for ContinueWithVerificationUiFlow
impl Clone for ContinueWithVerificationUiFlow
Source§fn clone(&self) -> ContinueWithVerificationUiFlow
fn clone(&self) -> ContinueWithVerificationUiFlow
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 moreSource§impl Default for ContinueWithVerificationUiFlow
impl Default for ContinueWithVerificationUiFlow
Source§fn default() -> ContinueWithVerificationUiFlow
fn default() -> ContinueWithVerificationUiFlow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContinueWithVerificationUiFlow
impl<'de> Deserialize<'de> for ContinueWithVerificationUiFlow
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
Source§impl PartialEq for ContinueWithVerificationUiFlow
impl PartialEq for ContinueWithVerificationUiFlow
Source§fn eq(&self, other: &ContinueWithVerificationUiFlow) -> bool
fn eq(&self, other: &ContinueWithVerificationUiFlow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContinueWithVerificationUiFlow
Auto Trait Implementations§
impl Freeze for ContinueWithVerificationUiFlow
impl RefUnwindSafe for ContinueWithVerificationUiFlow
impl Send for ContinueWithVerificationUiFlow
impl Sync for ContinueWithVerificationUiFlow
impl Unpin for ContinueWithVerificationUiFlow
impl UnwindSafe for ContinueWithVerificationUiFlow
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