pub struct DeployAwsOutput {
pub id: String,
pub input: DeployAwsInput,
pub lb_arn: Option<String>,
}
Expand description
DeployAwsOutput
JSON schema
{
"type": "object",
"required": [
"id",
"input"
],
"properties": {
"id": {
"type": "string"
},
"input": {
"$ref": "#/components/schemas/DeployAWSInput"
},
"lb_arn": {
"type": [
"string",
"null"
]
}
}
}
Fields§
§id: String
§input: DeployAwsInput
§lb_arn: Option<String>
Trait Implementations§
Source§impl Clone for DeployAwsOutput
impl Clone for DeployAwsOutput
Source§fn clone(&self) -> DeployAwsOutput
fn clone(&self) -> DeployAwsOutput
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 DeployAwsOutput
impl Debug for DeployAwsOutput
Source§impl<'de> Deserialize<'de> for DeployAwsOutput
impl<'de> Deserialize<'de> for DeployAwsOutput
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 From<&DeployAwsOutput> for DeployAwsOutput
impl From<&DeployAwsOutput> for DeployAwsOutput
Source§fn from(value: &DeployAwsOutput) -> Self
fn from(value: &DeployAwsOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeployAwsOutput
impl RefUnwindSafe for DeployAwsOutput
impl Send for DeployAwsOutput
impl Sync for DeployAwsOutput
impl Unpin for DeployAwsOutput
impl UnwindSafe for DeployAwsOutput
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