pub struct GetMediaMMSResponse {
pub status: Option<String>,
pub id: Option<u64>,
pub date: Option<NaiveDateTime>,
pub media: Option<String>,
pub field_0: Option<String>,
pub field_1: Option<String>,
pub field_2: Option<String>,
}Expand description
Response body for Client::get_media_mms (wire method getMediaMMS).
Fields§
§status: Option<String>§id: Option<u64>§date: Option<NaiveDateTime>§media: Option<String>§field_0: Option<String>§field_1: Option<String>§field_2: Option<String>Trait Implementations§
Source§impl Clone for GetMediaMMSResponse
impl Clone for GetMediaMMSResponse
Source§fn clone(&self) -> GetMediaMMSResponse
fn clone(&self) -> GetMediaMMSResponse
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 GetMediaMMSResponse
impl Debug for GetMediaMMSResponse
Source§impl Default for GetMediaMMSResponse
impl Default for GetMediaMMSResponse
Source§fn default() -> GetMediaMMSResponse
fn default() -> GetMediaMMSResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMediaMMSResponse
impl<'de> Deserialize<'de> for GetMediaMMSResponse
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 GetMediaMMSResponse
impl RefUnwindSafe for GetMediaMMSResponse
impl Send for GetMediaMMSResponse
impl Sync for GetMediaMMSResponse
impl Unpin for GetMediaMMSResponse
impl UnsafeUnpin for GetMediaMMSResponse
impl UnwindSafe for GetMediaMMSResponse
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