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