Enum gitlab::api::projects::environments::EnvironmentState
source · pub enum EnvironmentState {
Available,
Stopping,
Stopped,
}Expand description
States of environments.
Variants§
Available
Environments that have been deployed and are available.
Stopping
Environments that are being stopped.
Stopped
Environments that have been stopped.
Trait Implementations§
source§impl Clone for EnvironmentState
impl Clone for EnvironmentState
source§fn clone(&self) -> EnvironmentState
fn clone(&self) -> EnvironmentState
Returns a copy 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 EnvironmentState
impl Debug for EnvironmentState
source§impl ParamValue<'static> for EnvironmentState
impl ParamValue<'static> for EnvironmentState
source§impl PartialEq<EnvironmentState> for EnvironmentState
impl PartialEq<EnvironmentState> for EnvironmentState
source§fn eq(&self, other: &EnvironmentState) -> bool
fn eq(&self, other: &EnvironmentState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for EnvironmentState
impl Eq for EnvironmentState
impl StructuralEq for EnvironmentState
impl StructuralPartialEq for EnvironmentState
Auto Trait Implementations§
impl RefUnwindSafe for EnvironmentState
impl Send for EnvironmentState
impl Sync for EnvironmentState
impl Unpin for EnvironmentState
impl UnwindSafe for EnvironmentState
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.