pub struct GelatoSelfieReportError {
pub code: Option<GelatoSelfieReportErrorCode>,
pub reason: Option<String>,
}
Fields§
§code: Option<GelatoSelfieReportErrorCode>
A short machine-readable string giving the reason for the verification failure.
reason: Option<String>
A human-readable message giving the reason for the failure. These messages can be shown to your users.
Trait Implementations§
Source§impl Clone for GelatoSelfieReportError
impl Clone for GelatoSelfieReportError
Source§fn clone(&self) -> GelatoSelfieReportError
fn clone(&self) -> GelatoSelfieReportError
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 GelatoSelfieReportError
impl Debug for GelatoSelfieReportError
Source§impl FromValueOpt for GelatoSelfieReportError
impl FromValueOpt for GelatoSelfieReportError
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoSelfieReportError
impl RefUnwindSafe for GelatoSelfieReportError
impl Send for GelatoSelfieReportError
impl Sync for GelatoSelfieReportError
impl Unpin for GelatoSelfieReportError
impl UnwindSafe for GelatoSelfieReportError
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