pub enum DurableEnvironmentStatus {
Attaching,
Ready,
Degraded,
Detached,
}Expand description
Durable attachment lifecycle state.
Variants§
Attaching
Provider is being prepared.
Ready
Provider is ready for use.
Degraded
Provider is available with reduced capability.
Detached
Attachment is terminally detached.
Trait Implementations§
Source§impl Clone for DurableEnvironmentStatus
impl Clone for DurableEnvironmentStatus
Source§fn clone(&self) -> DurableEnvironmentStatus
fn clone(&self) -> DurableEnvironmentStatus
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 moreimpl Copy for DurableEnvironmentStatus
Source§impl Debug for DurableEnvironmentStatus
impl Debug for DurableEnvironmentStatus
Source§impl<'de> Deserialize<'de> for DurableEnvironmentStatus
impl<'de> Deserialize<'de> for DurableEnvironmentStatus
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 DurableEnvironmentStatus
Source§impl PartialEq for DurableEnvironmentStatus
impl PartialEq for DurableEnvironmentStatus
Source§impl Serialize for DurableEnvironmentStatus
impl Serialize for DurableEnvironmentStatus
impl StructuralPartialEq for DurableEnvironmentStatus
Auto Trait Implementations§
impl Freeze for DurableEnvironmentStatus
impl RefUnwindSafe for DurableEnvironmentStatus
impl Send for DurableEnvironmentStatus
impl Sync for DurableEnvironmentStatus
impl Unpin for DurableEnvironmentStatus
impl UnsafeUnpin for DurableEnvironmentStatus
impl UnwindSafe for DurableEnvironmentStatus
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