pub struct DeploymentSummary {
pub name: String,
pub status: String,
pub service_count: usize,
pub created_at: String,
}Expand description
Deployment summary
Fields§
§name: StringDeployment name
status: StringDeployment status
service_count: usizeNumber of services
created_at: StringCreated timestamp
Trait Implementations§
Source§impl ComposeSchema for DeploymentSummary
impl ComposeSchema for DeploymentSummary
Source§impl Debug for DeploymentSummary
impl Debug for DeploymentSummary
Source§impl<'de> Deserialize<'de> for DeploymentSummary
impl<'de> Deserialize<'de> for DeploymentSummary
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 DeploymentSummary
impl Serialize for DeploymentSummary
Auto Trait Implementations§
impl Freeze for DeploymentSummary
impl RefUnwindSafe for DeploymentSummary
impl Send for DeploymentSummary
impl Sync for DeploymentSummary
impl Unpin for DeploymentSummary
impl UnsafeUnpin for DeploymentSummary
impl UnwindSafe for DeploymentSummary
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