pub struct Application {
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 Application
impl Application
pub fn new() -> Self
pub fn application_sid(self, 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 Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
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 Application
impl Debug for Application
Source§impl Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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