pub enum DelegatedRunStatus {
Pending,
Success,
Failed,
Unknown,
}Expand description
Machine-readable state of a GitHub Actions run that owns a delegated publish.
Variants§
Pending
The matching run has not appeared yet, or is queued/in progress.
Success
The matching run completed successfully; destination verification follows.
Failed
The matching run reached a terminal non-success conclusion.
Unknown
The run could not be resolved or observed reliably.
Implementations§
Trait Implementations§
Source§impl Clone for DelegatedRunStatus
impl Clone for DelegatedRunStatus
Source§fn clone(&self) -> DelegatedRunStatus
fn clone(&self) -> DelegatedRunStatus
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 DelegatedRunStatus
Source§impl Debug for DelegatedRunStatus
impl Debug for DelegatedRunStatus
impl Eq for DelegatedRunStatus
Source§impl PartialEq for DelegatedRunStatus
impl PartialEq for DelegatedRunStatus
Source§impl Serialize for DelegatedRunStatus
impl Serialize for DelegatedRunStatus
impl StructuralPartialEq for DelegatedRunStatus
Auto Trait Implementations§
impl Freeze for DelegatedRunStatus
impl RefUnwindSafe for DelegatedRunStatus
impl Send for DelegatedRunStatus
impl Sync for DelegatedRunStatus
impl Unpin for DelegatedRunStatus
impl UnsafeUnpin for DelegatedRunStatus
impl UnwindSafe for DelegatedRunStatus
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.