pub struct GelatoDocumentReportError {
pub code: Option<GelatoDocumentReportErrorCode>,
pub reason: Option<String>,
}
Fields§
§code: Option<GelatoDocumentReportErrorCode>
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 GelatoDocumentReportError
impl Clone for GelatoDocumentReportError
Source§fn clone(&self) -> GelatoDocumentReportError
fn clone(&self) -> GelatoDocumentReportError
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 GelatoDocumentReportError
impl Debug for GelatoDocumentReportError
Source§impl FromValueOpt for GelatoDocumentReportError
impl FromValueOpt for GelatoDocumentReportError
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoDocumentReportError
impl RefUnwindSafe for GelatoDocumentReportError
impl Send for GelatoDocumentReportError
impl Sync for GelatoDocumentReportError
impl Unpin for GelatoDocumentReportError
impl UnwindSafe for GelatoDocumentReportError
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