pub struct SendSMSParams {
pub did: Option<String>,
pub dst: Option<String>,
pub message: Option<String>,
}Expand description
Parameters for Client::send_sms (wire method sendSMS).
Fields§
§did: Option<String>§dst: Option<String>§message: Option<String>Trait Implementations§
Source§impl Clone for SendSMSParams
impl Clone for SendSMSParams
Source§fn clone(&self) -> SendSMSParams
fn clone(&self) -> SendSMSParams
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 SendSMSParams
impl Debug for SendSMSParams
Source§impl Default for SendSMSParams
impl Default for SendSMSParams
Source§fn default() -> SendSMSParams
fn default() -> SendSMSParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SendSMSParams
impl RefUnwindSafe for SendSMSParams
impl Send for SendSMSParams
impl Sync for SendSMSParams
impl Unpin for SendSMSParams
impl UnsafeUnpin for SendSMSParams
impl UnwindSafe for SendSMSParams
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