pub struct ElasticPoolCreationResult {
    pub agent_pool: Option<TaskAgentPool>,
    pub agent_queue: Option<TaskAgentQueue>,
    pub elastic_pool: Option<ElasticPool>,
}Expand description
Returned result from creating a new elastic pool
Fields§
§agent_pool: Option<TaskAgentPool>An organization-level grouping of agents.
agent_queue: Option<TaskAgentQueue>An agent queue.
elastic_pool: Option<ElasticPool>Data and settings for an elastic pool
Implementations§
Trait Implementations§
source§impl Clone for ElasticPoolCreationResult
 
impl Clone for ElasticPoolCreationResult
source§fn clone(&self) -> ElasticPoolCreationResult
 
fn clone(&self) -> ElasticPoolCreationResult
Returns a copy 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 ElasticPoolCreationResult
 
impl Debug for ElasticPoolCreationResult
source§impl Default for ElasticPoolCreationResult
 
impl Default for ElasticPoolCreationResult
source§fn default() -> ElasticPoolCreationResult
 
fn default() -> ElasticPoolCreationResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ElasticPoolCreationResult
 
impl<'de> Deserialize<'de> for ElasticPoolCreationResult
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 ElasticPoolCreationResult
 
impl PartialEq for ElasticPoolCreationResult
source§fn eq(&self, other: &ElasticPoolCreationResult) -> bool
 
fn eq(&self, other: &ElasticPoolCreationResult) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ElasticPoolCreationResult
Auto Trait Implementations§
impl RefUnwindSafe for ElasticPoolCreationResult
impl Send for ElasticPoolCreationResult
impl Sync for ElasticPoolCreationResult
impl Unpin for ElasticPoolCreationResult
impl UnwindSafe for ElasticPoolCreationResult
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