pub struct SendFAXMessageParams {
pub to_number: Option<String>,
pub from_name: Option<String>,
pub from_number: Option<String>,
pub send_email_enabled: Option<i64>,
pub send_email: Option<String>,
pub station_id: Option<String>,
pub file: Option<String>,
pub test: Option<i64>,
}Expand description
Parameters for Client::send_fax_message (wire method sendFaxMessage).
Fields§
§to_number: Option<String>§from_name: Option<String>§from_number: Option<String>§send_email_enabled: Option<i64>§send_email: Option<String>§station_id: Option<String>§file: Option<String>§test: Option<i64>Trait Implementations§
Source§impl Clone for SendFAXMessageParams
impl Clone for SendFAXMessageParams
Source§fn clone(&self) -> SendFAXMessageParams
fn clone(&self) -> SendFAXMessageParams
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 SendFAXMessageParams
impl Debug for SendFAXMessageParams
Source§impl Default for SendFAXMessageParams
impl Default for SendFAXMessageParams
Source§fn default() -> SendFAXMessageParams
fn default() -> SendFAXMessageParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SendFAXMessageParams
impl RefUnwindSafe for SendFAXMessageParams
impl Send for SendFAXMessageParams
impl Sync for SendFAXMessageParams
impl Unpin for SendFAXMessageParams
impl UnsafeUnpin for SendFAXMessageParams
impl UnwindSafe for SendFAXMessageParams
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