Enum gitlab::types::StatusState  
source · pub enum StatusState {
    Created,
    WaitingForResource,
    Preparing,
    Pending,
    Running,
    Success,
    Failed,
    Canceled,
    Skipped,
    Manual,
    Scheduled,
}Expand description
States for commit statuses.
Variants§
Created
The check was created.
WaitingForResource
The check is waiting for some other resource.
Preparing
The check is currently being prepared.
Pending
The check is queued.
Running
The check is currently running.
Success
The check succeeded.
Failed
The check failed.
Canceled
The check was canceled.
Skipped
The check was skipped.
Manual
The check is waiting for manual action.
Scheduled
The check is scheduled to run at some point in time.
Trait Implementations§
source§impl Clone for StatusState
 
impl Clone for StatusState
source§fn clone(&self) -> StatusState
 
fn clone(&self) -> StatusState
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 StatusState
 
impl Debug for StatusState
source§impl<'de> Deserialize<'de> for StatusState
 
impl<'de> Deserialize<'de> for StatusState
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 PartialEq for StatusState
 
impl PartialEq for StatusState
source§fn eq(&self, other: &StatusState) -> bool
 
fn eq(&self, other: &StatusState) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for StatusState
 
impl Serialize for StatusState
impl Copy for StatusState
impl Eq for StatusState
impl StructuralPartialEq for StatusState
Auto Trait Implementations§
impl RefUnwindSafe for StatusState
impl Send for StatusState
impl Sync for StatusState
impl Unpin for StatusState
impl UnwindSafe for StatusState
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
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.