Enum gitlab::api::projects::repository::commits::CommitStatusState
source · pub enum CommitStatusState {
Pending,
Running,
Success,
Failed,
Canceled,
}Expand description
The state a commit status may have.
Variants§
Pending
The status is expected, but has not started yet.
Running
The status is currently running.
Success
The status completed successfully.
Failed
The status completed with an error.
Canceled
The status was canceled before it completed.
Trait Implementations§
source§impl Clone for CommitStatusState
impl Clone for CommitStatusState
source§fn clone(&self) -> CommitStatusState
fn clone(&self) -> CommitStatusState
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 CommitStatusState
impl Debug for CommitStatusState
source§impl ParamValue<'static> for CommitStatusState
impl ParamValue<'static> for CommitStatusState
source§impl PartialEq<CommitStatusState> for CommitStatusState
impl PartialEq<CommitStatusState> for CommitStatusState
source§fn eq(&self, other: &CommitStatusState) -> bool
fn eq(&self, other: &CommitStatusState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CommitStatusState
impl Eq for CommitStatusState
impl StructuralEq for CommitStatusState
impl StructuralPartialEq for CommitStatusState
Auto Trait Implementations§
impl RefUnwindSafe for CommitStatusState
impl Send for CommitStatusState
impl Sync for CommitStatusState
impl Unpin for CommitStatusState
impl UnwindSafe for CommitStatusState
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.