pub struct CreateApplicationRequest {
pub description: Option<String>,
pub name: String,
pub tags: Option<HashMap<String, String>>,
}Fields§
§description: Option<String>A description of the application.
name: StringA name for the application.
Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Trait Implementations§
Source§impl Clone for CreateApplicationRequest
impl Clone for CreateApplicationRequest
Source§fn clone(&self) -> CreateApplicationRequest
fn clone(&self) -> CreateApplicationRequest
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 CreateApplicationRequest
impl Debug for CreateApplicationRequest
Source§impl Default for CreateApplicationRequest
impl Default for CreateApplicationRequest
Source§fn default() -> CreateApplicationRequest
fn default() -> CreateApplicationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateApplicationRequest
impl PartialEq for CreateApplicationRequest
Source§impl Serialize for CreateApplicationRequest
impl Serialize for CreateApplicationRequest
impl StructuralPartialEq for CreateApplicationRequest
Auto Trait Implementations§
impl Freeze for CreateApplicationRequest
impl RefUnwindSafe for CreateApplicationRequest
impl Send for CreateApplicationRequest
impl Sync for CreateApplicationRequest
impl Unpin for CreateApplicationRequest
impl UnwindSafe for CreateApplicationRequest
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