pub struct DeploymentDetails {
pub name: String,
pub status: String,
pub services: Vec<String>,
pub service_health: Vec<ServiceHealthInfo>,
pub created_at: String,
pub updated_at: String,
}Expand description
Deployment details (enhanced with per-service health and endpoints)
Fields§
§name: StringDeployment name
status: StringDeployment status
services: Vec<String>Service names (for backwards compatibility)
service_health: Vec<ServiceHealthInfo>Per-service health and endpoint info
created_at: StringCreated timestamp
updated_at: StringUpdated timestamp
Trait Implementations§
Source§impl ComposeSchema for DeploymentDetails
impl ComposeSchema for DeploymentDetails
Source§impl Debug for DeploymentDetails
impl Debug for DeploymentDetails
Source§impl<'de> Deserialize<'de> for DeploymentDetails
impl<'de> Deserialize<'de> for DeploymentDetails
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 Serialize for DeploymentDetails
impl Serialize for DeploymentDetails
Auto Trait Implementations§
impl Freeze for DeploymentDetails
impl RefUnwindSafe for DeploymentDetails
impl Send for DeploymentDetails
impl Sync for DeploymentDetails
impl Unpin for DeploymentDetails
impl UnsafeUnpin for DeploymentDetails
impl UnwindSafe for DeploymentDetails
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