pub struct DeploymentPoolSummary {
pub deployment_groups: Vec<DeploymentGroupReference>,
pub offline_agents_count: Option<i32>,
pub online_agents_count: Option<i32>,
pub pool: Option<TaskAgentPoolReference>,
pub resource: Option<EnvironmentResourceReference>,
}Expand description
Deployment pool summary.
Fields§
§deployment_groups: Vec<DeploymentGroupReference>List of deployment groups referring to the deployment pool.
offline_agents_count: Option<i32>Number of deployment agents that are offline.
online_agents_count: Option<i32>Number of deployment agents that are online.
pool: Option<TaskAgentPoolReference>§resource: Option<EnvironmentResourceReference>EnvironmentResourceReference.
Implementations§
Trait Implementations§
Source§impl Clone for DeploymentPoolSummary
impl Clone for DeploymentPoolSummary
Source§fn clone(&self) -> DeploymentPoolSummary
fn clone(&self) -> DeploymentPoolSummary
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 DeploymentPoolSummary
impl Debug for DeploymentPoolSummary
Source§impl Default for DeploymentPoolSummary
impl Default for DeploymentPoolSummary
Source§fn default() -> DeploymentPoolSummary
fn default() -> DeploymentPoolSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentPoolSummary
impl<'de> Deserialize<'de> for DeploymentPoolSummary
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 PartialEq for DeploymentPoolSummary
impl PartialEq for DeploymentPoolSummary
Source§impl Serialize for DeploymentPoolSummary
impl Serialize for DeploymentPoolSummary
impl StructuralPartialEq for DeploymentPoolSummary
Auto Trait Implementations§
impl Freeze for DeploymentPoolSummary
impl RefUnwindSafe for DeploymentPoolSummary
impl Send for DeploymentPoolSummary
impl Sync for DeploymentPoolSummary
impl Unpin for DeploymentPoolSummary
impl UnwindSafe for DeploymentPoolSummary
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