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