pub enum AgentPoolLifecycleStatus {
Created,
RunJoined,
RunLeft,
}Expand description
Enumerates the finite agent pool lifecycle status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Created
Use this variant when the contract needs to represent created; selecting it has no side effect by itself.
RunJoined
Use this variant when the contract needs to represent run joined; selecting it has no side effect by itself.
RunLeft
Use this variant when the contract needs to represent run left; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for AgentPoolLifecycleStatus
impl Clone for AgentPoolLifecycleStatus
Source§fn clone(&self) -> AgentPoolLifecycleStatus
fn clone(&self) -> AgentPoolLifecycleStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentPoolLifecycleStatus
impl Debug for AgentPoolLifecycleStatus
Source§impl<'de> Deserialize<'de> for AgentPoolLifecycleStatus
impl<'de> Deserialize<'de> for AgentPoolLifecycleStatus
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 AgentPoolLifecycleStatus
impl PartialEq for AgentPoolLifecycleStatus
Source§fn eq(&self, other: &AgentPoolLifecycleStatus) -> bool
fn eq(&self, other: &AgentPoolLifecycleStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentPoolLifecycleStatus
impl Serialize for AgentPoolLifecycleStatus
impl Eq for AgentPoolLifecycleStatus
impl StructuralPartialEq for AgentPoolLifecycleStatus
Auto Trait Implementations§
impl Freeze for AgentPoolLifecycleStatus
impl RefUnwindSafe for AgentPoolLifecycleStatus
impl Send for AgentPoolLifecycleStatus
impl Sync for AgentPoolLifecycleStatus
impl Unpin for AgentPoolLifecycleStatus
impl UnsafeUnpin for AgentPoolLifecycleStatus
impl UnwindSafe for AgentPoolLifecycleStatus
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