pub struct GelatoSelfieReport {
pub document: Option<String>,
pub error: Option<GelatoSelfieReportError>,
pub selfie: Option<String>,
pub status: GelatoSelfieReportStatus,
}Expand description
Result from a selfie check
Fields§
§document: Option<String>ID of the File holding the image of the identity document used in this check.
error: Option<GelatoSelfieReportError>Details on the verification error. Present when status is unverified.
selfie: Option<String>ID of the File holding the image of the selfie used in this check.
status: GelatoSelfieReportStatusStatus of this selfie check.
Trait Implementations§
Source§impl Clone for GelatoSelfieReport
impl Clone for GelatoSelfieReport
Source§fn clone(&self) -> GelatoSelfieReport
fn clone(&self) -> GelatoSelfieReport
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 GelatoSelfieReport
impl Debug for GelatoSelfieReport
Source§impl Deserialize for GelatoSelfieReport
impl Deserialize for GelatoSelfieReport
Source§impl FromValueOpt for GelatoSelfieReport
impl FromValueOpt for GelatoSelfieReport
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoSelfieReport
impl RefUnwindSafe for GelatoSelfieReport
impl Send for GelatoSelfieReport
impl Sync for GelatoSelfieReport
impl Unpin for GelatoSelfieReport
impl UnwindSafe for GelatoSelfieReport
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