pub struct GetMMSResponseSMS {
pub id: Option<u64>,
pub date: Option<NaiveDateTime>,
pub type: Option<u64>,
pub did: Option<u64>,
pub contact: Option<u64>,
pub message: Option<String>,
pub carrier_status: Option<String>,
pub col_media1: Option<String>,
pub col_media2: Option<String>,
pub col_media3: Option<String>,
pub media: Option<Vec<String>>,
}Expand description
Response body for Client::get_mms (wire method getMMS).
Fields§
§id: Option<u64>§date: Option<NaiveDateTime>§type: Option<u64>§did: Option<u64>§contact: Option<u64>§message: Option<String>§carrier_status: Option<String>§col_media1: Option<String>§col_media2: Option<String>§col_media3: Option<String>§media: Option<Vec<String>>Trait Implementations§
Source§impl Clone for GetMMSResponseSMS
impl Clone for GetMMSResponseSMS
Source§fn clone(&self) -> GetMMSResponseSMS
fn clone(&self) -> GetMMSResponseSMS
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetMMSResponseSMS
impl Debug for GetMMSResponseSMS
Source§impl Default for GetMMSResponseSMS
impl Default for GetMMSResponseSMS
Source§fn default() -> GetMMSResponseSMS
fn default() -> GetMMSResponseSMS
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMMSResponseSMS
impl<'de> Deserialize<'de> for GetMMSResponseSMS
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 GetMMSResponseSMS
impl RefUnwindSafe for GetMMSResponseSMS
impl Send for GetMMSResponseSMS
impl Sync for GetMMSResponseSMS
impl Unpin for GetMMSResponseSMS
impl UnsafeUnpin for GetMMSResponseSMS
impl UnwindSafe for GetMMSResponseSMS
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