pub struct SourceCodeVerificationFlow {
pub attempts_remaining: i64,
pub status: String,
}Fields§
§attempts_remaining: i64The number of attempts remaining to authenticate the source object with a verification code.
status: StringThe status of the code verification, either pending (awaiting verification, attempts_remaining should be greater than 0), succeeded (successful verification) or failed (failed verification, cannot be verified anymore as attempts_remaining should be 0).
Trait Implementations§
Source§impl Clone for SourceCodeVerificationFlow
impl Clone for SourceCodeVerificationFlow
Source§fn clone(&self) -> SourceCodeVerificationFlow
fn clone(&self) -> SourceCodeVerificationFlow
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 SourceCodeVerificationFlow
impl Debug for SourceCodeVerificationFlow
Source§impl FromValueOpt for SourceCodeVerificationFlow
impl FromValueOpt for SourceCodeVerificationFlow
fn from_value(v: Value) -> Option<Self>
impl Eq for SourceCodeVerificationFlow
impl StructuralPartialEq for SourceCodeVerificationFlow
Auto Trait Implementations§
impl Freeze for SourceCodeVerificationFlow
impl RefUnwindSafe for SourceCodeVerificationFlow
impl Send for SourceCodeVerificationFlow
impl Sync for SourceCodeVerificationFlow
impl Unpin for SourceCodeVerificationFlow
impl UnsafeUnpin for SourceCodeVerificationFlow
impl UnwindSafe for SourceCodeVerificationFlow
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