pub struct GetMMSParams {
pub mms: Option<i64>,
pub from: Option<String>,
pub to: Option<String>,
pub type: Option<String>,
pub did: Option<String>,
pub contact: Option<String>,
pub limit: Option<String>,
pub timezone: Option<String>,
pub all_messages: Option<i64>,
}Expand description
Parameters for Client::get_mms (wire method getMMS).
Fields§
§mms: Option<i64>§from: Option<String>§to: Option<String>§type: Option<String>§did: Option<String>§contact: Option<String>§limit: Option<String>§timezone: Option<String>§all_messages: Option<i64>Trait Implementations§
Source§impl Clone for GetMMSParams
impl Clone for GetMMSParams
Source§fn clone(&self) -> GetMMSParams
fn clone(&self) -> GetMMSParams
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 GetMMSParams
impl Debug for GetMMSParams
Source§impl Default for GetMMSParams
impl Default for GetMMSParams
Source§fn default() -> GetMMSParams
fn default() -> GetMMSParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetMMSParams
impl RefUnwindSafe for GetMMSParams
impl Send for GetMMSParams
impl Sync for GetMMSParams
impl Unpin for GetMMSParams
impl UnsafeUnpin for GetMMSParams
impl UnwindSafe for GetMMSParams
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