pub struct DeploymentInfoResponse {
pub commands: CommandsInfo,
pub platform: Platform,
pub resources: HashMap<String, ResourceEntry>,
pub status: String,
}Expand description
DeploymentInfoResponse
JSON schema
{
"type": "object",
"required": [
"commands",
"platform",
"resources",
"status"
],
"properties": {
"commands": {
"$ref": "#/components/schemas/CommandsInfo"
},
"platform": {
"$ref": "#/components/schemas/Platform"
},
"resources": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/ResourceEntry"
}
},
"status": {
"type": "string"
}
}
}Fields§
§commands: CommandsInfo§platform: Platform§resources: HashMap<String, ResourceEntry>§status: StringImplementations§
Source§impl DeploymentInfoResponse
impl DeploymentInfoResponse
pub fn builder() -> DeploymentInfoResponse
Trait Implementations§
Source§impl Clone for DeploymentInfoResponse
impl Clone for DeploymentInfoResponse
Source§fn clone(&self) -> DeploymentInfoResponse
fn clone(&self) -> DeploymentInfoResponse
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 DeploymentInfoResponse
impl Debug for DeploymentInfoResponse
Source§impl<'de> Deserialize<'de> for DeploymentInfoResponse
impl<'de> Deserialize<'de> for DeploymentInfoResponse
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<&DeploymentInfoResponse> for DeploymentInfoResponse
impl From<&DeploymentInfoResponse> for DeploymentInfoResponse
Source§fn from(value: &DeploymentInfoResponse) -> Self
fn from(value: &DeploymentInfoResponse) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentInfoResponse> for DeploymentInfoResponse
impl From<DeploymentInfoResponse> for DeploymentInfoResponse
Source§fn from(value: DeploymentInfoResponse) -> Self
fn from(value: DeploymentInfoResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for DeploymentInfoResponse
impl Serialize for DeploymentInfoResponse
Source§impl TryFrom<DeploymentInfoResponse> for DeploymentInfoResponse
impl TryFrom<DeploymentInfoResponse> for DeploymentInfoResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DeploymentInfoResponse) -> Result<Self, ConversionError>
fn try_from(value: DeploymentInfoResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeploymentInfoResponse
impl RefUnwindSafe for DeploymentInfoResponse
impl Send for DeploymentInfoResponse
impl Sync for DeploymentInfoResponse
impl Unpin for DeploymentInfoResponse
impl UnsafeUnpin for DeploymentInfoResponse
impl UnwindSafe for DeploymentInfoResponse
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