pub struct UpdateApplicationInput {
pub application_name: Option<String>,
pub new_application_name: Option<String>,
}
Expand description
Represents the input of an UpdateApplication
operation.
Fields§
§application_name: Option<String>
The current name of the application you want to change.
new_application_name: Option<String>
The new name to give the application.
Trait Implementations§
Source§impl Clone for UpdateApplicationInput
impl Clone for UpdateApplicationInput
Source§fn clone(&self) -> UpdateApplicationInput
fn clone(&self) -> UpdateApplicationInput
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 UpdateApplicationInput
impl Debug for UpdateApplicationInput
Source§impl Default for UpdateApplicationInput
impl Default for UpdateApplicationInput
Source§fn default() -> UpdateApplicationInput
fn default() -> UpdateApplicationInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateApplicationInput
impl PartialEq for UpdateApplicationInput
Source§impl Serialize for UpdateApplicationInput
impl Serialize for UpdateApplicationInput
impl StructuralPartialEq for UpdateApplicationInput
Auto Trait Implementations§
impl Freeze for UpdateApplicationInput
impl RefUnwindSafe for UpdateApplicationInput
impl Send for UpdateApplicationInput
impl Sync for UpdateApplicationInput
impl Unpin for UpdateApplicationInput
impl UnwindSafe for UpdateApplicationInput
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