pub enum JoinState {
Provisioning,
Booting,
Joining,
Joined,
Failed,
}Expand description
Lifecycle state of a provisioned node as it works toward cluster membership.
Variants§
Provisioning
The provider is creating the underlying machine.
Booting
The machine exists and is booting.
Joining
The node agent is attempting to join the cluster.
Joined
The node has joined the cluster.
Failed
Provisioning or joining failed.
Trait Implementations§
impl Copy for JoinState
Source§impl<'de> Deserialize<'de> for JoinState
impl<'de> Deserialize<'de> for JoinState
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
impl Eq for JoinState
impl StructuralPartialEq for JoinState
Auto Trait Implementations§
impl Freeze for JoinState
impl RefUnwindSafe for JoinState
impl Send for JoinState
impl Sync for JoinState
impl Unpin for JoinState
impl UnsafeUnpin for JoinState
impl UnwindSafe for JoinState
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