pub struct PullSmsReply {
pub country_code: String,
pub reply_content: String,
pub subscriber_number: String,
pub extend_code: String,
pub reply_time: i64,
pub phone_number: String,
pub sign_name: String,
}Fields§
§country_code: String§reply_content: String§subscriber_number: String§extend_code: String§reply_time: i64§phone_number: String§sign_name: StringTrait Implementations§
Source§impl Clone for PullSmsReply
impl Clone for PullSmsReply
Source§fn clone(&self) -> PullSmsReply
fn clone(&self) -> PullSmsReply
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 PullSmsReply
impl Debug for PullSmsReply
Source§impl<'de> Deserialize<'de> for PullSmsReply
impl<'de> Deserialize<'de> for PullSmsReply
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 PullSmsReply
impl RefUnwindSafe for PullSmsReply
impl Send for PullSmsReply
impl Sync for PullSmsReply
impl Unpin for PullSmsReply
impl UnwindSafe for PullSmsReply
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