pub struct CreateApplicationOutput {
pub application_id: Option<String>,
}
Expand description
Represents the output of a CreateApplication
operation.
Fields§
§application_id: Option<String>
A unique application ID.
Trait Implementations§
Source§impl Clone for CreateApplicationOutput
impl Clone for CreateApplicationOutput
Source§fn clone(&self) -> CreateApplicationOutput
fn clone(&self) -> CreateApplicationOutput
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 CreateApplicationOutput
impl Debug for CreateApplicationOutput
Source§impl Default for CreateApplicationOutput
impl Default for CreateApplicationOutput
Source§fn default() -> CreateApplicationOutput
fn default() -> CreateApplicationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateApplicationOutput
impl<'de> Deserialize<'de> for CreateApplicationOutput
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
Source§impl PartialEq for CreateApplicationOutput
impl PartialEq for CreateApplicationOutput
impl StructuralPartialEq for CreateApplicationOutput
Auto Trait Implementations§
impl Freeze for CreateApplicationOutput
impl RefUnwindSafe for CreateApplicationOutput
impl Send for CreateApplicationOutput
impl Sync for CreateApplicationOutput
impl Unpin for CreateApplicationOutput
impl UnwindSafe for CreateApplicationOutput
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