pub struct DialApplication {
pub application_sid: Option<String>,
pub customer_id: Option<String>,
pub copy_parent_to: Option<String>,
pub parameters: Vec<Parameter>,
}Fields§
§application_sid: Option<String>§customer_id: Option<String>§copy_parent_to: Option<String>§parameters: Vec<Parameter>Implementations§
Source§impl DialApplication
impl DialApplication
pub fn new(application_sid: impl Into<String>) -> Self
pub fn customer_id(self, customer_id: impl Into<String>) -> Self
pub fn copy_parent_to(self, copy_parent_to: impl Into<String>) -> Self
pub fn add_parameter(self, parameter: Parameter) -> Self
Trait Implementations§
Source§impl Clone for DialApplication
impl Clone for DialApplication
Source§fn clone(&self) -> DialApplication
fn clone(&self) -> DialApplication
Returns a duplicate of the value. Read more
1.0.0 · 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 DialApplication
impl Debug for DialApplication
Source§impl Default for DialApplication
impl Default for DialApplication
Source§fn default() -> DialApplication
fn default() -> DialApplication
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DialApplication
impl RefUnwindSafe for DialApplication
impl Send for DialApplication
impl Sync for DialApplication
impl Unpin for DialApplication
impl UnwindSafe for DialApplication
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