pub struct DeploymentResponse {Show 15 fields
pub created_at: String,
pub current_release_id: Option<String>,
pub deployment_group: Option<DeploymentGroupMinimal>,
pub deployment_group_id: String,
pub desired_release_id: Option<String>,
pub environment_info: Option<Value>,
pub error: Option<Value>,
pub id: String,
pub name: String,
pub platform: Platform,
pub retry_requested: bool,
pub stack_settings: Option<Value>,
pub stack_state: Option<Value>,
pub status: String,
pub updated_at: Option<String>,
}Expand description
DeploymentResponse
JSON schema
{
"type": "object",
"required": [
"createdAt",
"deploymentGroupId",
"id",
"name",
"platform",
"retryRequested",
"status"
],
"properties": {
"createdAt": {
"type": "string"
},
"currentReleaseId": {
"type": [
"string",
"null"
]
},
"deploymentGroup": {
"$ref": "#/components/schemas/DeploymentGroupMinimal"
},
"deploymentGroupId": {
"type": "string"
},
"desiredReleaseId": {
"type": [
"string",
"null"
]
},
"environmentInfo": {},
"error": {},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"platform": {
"$ref": "#/components/schemas/Platform"
},
"retryRequested": {
"type": "boolean"
},
"stackSettings": {},
"stackState": {},
"status": {
"type": "string"
},
"updatedAt": {
"type": [
"string",
"null"
]
}
}
}Fields§
§created_at: String§current_release_id: Option<String>§deployment_group: Option<DeploymentGroupMinimal>§deployment_group_id: String§desired_release_id: Option<String>§environment_info: Option<Value>§error: Option<Value>§id: String§name: String§platform: Platform§retry_requested: bool§stack_settings: Option<Value>§stack_state: Option<Value>§status: String§updated_at: Option<String>Implementations§
Source§impl DeploymentResponse
impl DeploymentResponse
pub fn builder() -> DeploymentResponse
Trait Implementations§
Source§impl Clone for DeploymentResponse
impl Clone for DeploymentResponse
Source§fn clone(&self) -> DeploymentResponse
fn clone(&self) -> DeploymentResponse
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 DeploymentResponse
impl Debug for DeploymentResponse
Source§impl<'de> Deserialize<'de> for DeploymentResponse
impl<'de> Deserialize<'de> for DeploymentResponse
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<&DeploymentResponse> for DeploymentResponse
impl From<&DeploymentResponse> for DeploymentResponse
Source§fn from(value: &DeploymentResponse) -> Self
fn from(value: &DeploymentResponse) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentResponse> for DeploymentResponse
impl From<DeploymentResponse> for DeploymentResponse
Source§fn from(value: DeploymentResponse) -> Self
fn from(value: DeploymentResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for DeploymentResponse
impl Serialize for DeploymentResponse
Source§impl TryFrom<DeploymentResponse> for DeploymentResponse
impl TryFrom<DeploymentResponse> for DeploymentResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DeploymentResponse) -> Result<Self, ConversionError>
fn try_from(value: DeploymentResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeploymentResponse
impl RefUnwindSafe for DeploymentResponse
impl Send for DeploymentResponse
impl Sync for DeploymentResponse
impl Unpin for DeploymentResponse
impl UnsafeUnpin for DeploymentResponse
impl UnwindSafe for DeploymentResponse
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