pub struct GelatoSessionLastError {
pub code: Option<GelatoSessionLastErrorCode>,
pub reason: Option<String>,
}
Expand description
Shows last VerificationSession error
Fields§
§code: Option<GelatoSessionLastErrorCode>
A short machine-readable string giving the reason for the verification or user-session failure.
reason: Option<String>
A message that explains the reason for verification or user-session failure.
Trait Implementations§
Source§impl Clone for GelatoSessionLastError
impl Clone for GelatoSessionLastError
Source§fn clone(&self) -> GelatoSessionLastError
fn clone(&self) -> GelatoSessionLastError
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 GelatoSessionLastError
impl Debug for GelatoSessionLastError
Source§impl Deserialize for GelatoSessionLastError
impl Deserialize for GelatoSessionLastError
Source§impl FromValueOpt for GelatoSessionLastError
impl FromValueOpt for GelatoSessionLastError
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoSessionLastError
impl RefUnwindSafe for GelatoSessionLastError
impl Send for GelatoSessionLastError
impl Sync for GelatoSessionLastError
impl Unpin for GelatoSessionLastError
impl UnwindSafe for GelatoSessionLastError
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