pub struct AddApplicationInputResponse {
pub application_arn: Option<String>,
pub application_version_id: Option<i64>,
pub input_descriptions: Option<Vec<InputDescription>>,
}Fields§
§application_arn: Option<String>The Amazon Resource Name (ARN) of the application.
application_version_id: Option<i64>Provides the current application version.
input_descriptions: Option<Vec<InputDescription>>Describes the application input configuration.
Trait Implementations§
Source§impl Clone for AddApplicationInputResponse
impl Clone for AddApplicationInputResponse
Source§fn clone(&self) -> AddApplicationInputResponse
fn clone(&self) -> AddApplicationInputResponse
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 AddApplicationInputResponse
impl Debug for AddApplicationInputResponse
Source§impl Default for AddApplicationInputResponse
impl Default for AddApplicationInputResponse
Source§fn default() -> AddApplicationInputResponse
fn default() -> AddApplicationInputResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddApplicationInputResponse
impl<'de> Deserialize<'de> for AddApplicationInputResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AddApplicationInputResponse
Auto Trait Implementations§
impl Freeze for AddApplicationInputResponse
impl RefUnwindSafe for AddApplicationInputResponse
impl Send for AddApplicationInputResponse
impl Sync for AddApplicationInputResponse
impl Unpin for AddApplicationInputResponse
impl UnwindSafe for AddApplicationInputResponse
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