pub struct SkipEvent {
pub stage: String,
pub label: String,
pub reason: String,
}Expand description
A single skip event: which stage, which sub-config, and why.
Fields§
§stage: StringStage that raised the skip (sign, docker-sign, publisher, …).
label: StringHuman-readable label for the sub-config (e.g. the sign config’s id,
the publisher’s name, or a positional publisher[2]).
reason: StringReason the skip happened (short, single-line).
Trait Implementations§
impl Eq for SkipEvent
impl StructuralPartialEq for SkipEvent
Auto Trait Implementations§
impl Freeze for SkipEvent
impl RefUnwindSafe for SkipEvent
impl Send for SkipEvent
impl Sync for SkipEvent
impl Unpin for SkipEvent
impl UnsafeUnpin for SkipEvent
impl UnwindSafe for SkipEvent
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.