pub enum DomainState {
Disabled,
Enabling,
Enabled,
Disabling,
}Expand description
Tracks the current enablement status for a domain.
Variants§
Disabled
Disabled and idle.
Enabling
In the process of enabling (command dispatched, awaiting completion).
Enabled
Fully enabled and available.
Disabling
In the process of disabling.
Trait Implementations§
Source§impl Clone for DomainState
impl Clone for DomainState
Source§fn clone(&self) -> DomainState
fn clone(&self) -> DomainState
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 Debug for DomainState
impl Debug for DomainState
Source§impl PartialEq for DomainState
impl PartialEq for DomainState
impl Copy for DomainState
impl Eq for DomainState
impl StructuralPartialEq for DomainState
Auto Trait Implementations§
impl Freeze for DomainState
impl RefUnwindSafe for DomainState
impl Send for DomainState
impl Sync for DomainState
impl Unpin for DomainState
impl UnwindSafe for DomainState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.