pub enum VerdictSource {
ExitCode,
Reported,
}Expand description
Where a stage’s verdict came from.
Variants§
ExitCode
The stage process’s own exit status: 0 is Pass, anything else is
Fail.
Reported
A worker called sloop verdict over its stage’s socket.
Trait Implementations§
Source§impl Clone for VerdictSource
impl Clone for VerdictSource
Source§fn clone(&self) -> VerdictSource
fn clone(&self) -> VerdictSource
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 VerdictSource
Source§impl Debug for VerdictSource
impl Debug for VerdictSource
impl Eq for VerdictSource
Source§impl PartialEq for VerdictSource
impl PartialEq for VerdictSource
impl StructuralPartialEq for VerdictSource
Auto Trait Implementations§
impl Freeze for VerdictSource
impl RefUnwindSafe for VerdictSource
impl Send for VerdictSource
impl Sync for VerdictSource
impl Unpin for VerdictSource
impl UnsafeUnpin for VerdictSource
impl UnwindSafe for VerdictSource
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.