pub struct PhoneValidationResult {
pub is_valid: bool,
pub phone_type: Option<String>,
pub region: Option<String>,
pub state: Option<String>,
}Fields§
§is_valid: bool§phone_type: Option<String>§region: Option<String>§state: Option<String>Auto Trait Implementations§
impl Freeze for PhoneValidationResult
impl RefUnwindSafe for PhoneValidationResult
impl Send for PhoneValidationResult
impl Sync for PhoneValidationResult
impl Unpin for PhoneValidationResult
impl UnwindSafe for PhoneValidationResult
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