pub struct PhoneVerificationResponse {
pub phone: String,
pub verification_id: String,
pub expires_at: String,
}
Expand description
電話番号認証のレスポンス
Fields§
§phone: String
§verification_id: String
§expires_at: String
Trait Implementations§
Source§impl Clone for PhoneVerificationResponse
impl Clone for PhoneVerificationResponse
Source§fn clone(&self) -> PhoneVerificationResponse
fn clone(&self) -> PhoneVerificationResponse
Returns a copy 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 PhoneVerificationResponse
impl Debug for PhoneVerificationResponse
Source§impl<'de> Deserialize<'de> for PhoneVerificationResponse
impl<'de> Deserialize<'de> for PhoneVerificationResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PhoneVerificationResponse
impl RefUnwindSafe for PhoneVerificationResponse
impl Send for PhoneVerificationResponse
impl Sync for PhoneVerificationResponse
impl Unpin for PhoneVerificationResponse
impl UnwindSafe for PhoneVerificationResponse
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