pub enum HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum {
Inactive,
Active,
Deactivating,
Activating,
Other_(String),
}Expand description
Define the instance state type
Possible values:
inactive: The instance is deleted or not runningactive: The instance is runningdeactivating: The instance is in the progress of asynchronous deletionactivating: Reserved state for future proofing asynchronous creation
Variants§
Inactive
Active
Deactivating
Activating
Other_(String)
This variant handles values not known at compile time.
Trait Implementations§
Source§impl Clone for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl Clone for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
Source§fn clone(&self) -> HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
fn clone(&self) -> HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
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<'de> Deserialize<'de> for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl<'de> Deserialize<'de> for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
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<'_derivative_strum> From<&'_derivative_strum HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum> for &'static str
Source§fn from(
x: &'_derivative_strum HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum,
) -> &'static str
fn from( x: &'_derivative_strum HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum, ) -> &'static str
Converts to this type from the input type.
Source§impl From<HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum> for &'static str
impl From<HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum> for &'static str
Source§fn from(x: HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum) -> &'static str
fn from(x: HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl RefUnwindSafe for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl Send for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl Sync for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl Unpin for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
impl UnwindSafe for HostRuntimeInfoNetStackInstanceRuntimeInfoStateEnum
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