pub struct GelatoPhoneReport {
pub error: Option<GelatoPhoneReportError>,
pub phone: Option<String>,
pub status: GelatoPhoneReportStatus,
}
Expand description
Result from a phone check
Fields§
§error: Option<GelatoPhoneReportError>
Details on the verification error. Present when status is unverified
.
phone: Option<String>
Phone to be verified.
status: GelatoPhoneReportStatus
Status of this phone
check.
Trait Implementations§
Source§impl Clone for GelatoPhoneReport
impl Clone for GelatoPhoneReport
Source§fn clone(&self) -> GelatoPhoneReport
fn clone(&self) -> GelatoPhoneReport
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 GelatoPhoneReport
impl Debug for GelatoPhoneReport
Source§impl Deserialize for GelatoPhoneReport
impl Deserialize for GelatoPhoneReport
Source§impl FromValueOpt for GelatoPhoneReport
impl FromValueOpt for GelatoPhoneReport
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoPhoneReport
impl RefUnwindSafe for GelatoPhoneReport
impl Send for GelatoPhoneReport
impl Sync for GelatoPhoneReport
impl Unpin for GelatoPhoneReport
impl UnwindSafe for GelatoPhoneReport
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