pub enum EntryOutcome {
Ran,
SkippedCallback(String),
NativeCallback,
SkippedComposer(String),
}Expand description
What happened to one entry during a dispatch.
Variants§
Ran
A process entry ran to a zero exit, or @putenv mutated the env.
SkippedCallback(String)
A PHP callback with no native handler — warned and skipped.
NativeCallback
A PHP callback served by a registered native handler.
SkippedComposer(String)
An @composer subcommand bougie doesn’t map — warned and skipped.
Trait Implementations§
Source§impl Clone for EntryOutcome
impl Clone for EntryOutcome
Source§fn clone(&self) -> EntryOutcome
fn clone(&self) -> EntryOutcome
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 moreSource§impl Debug for EntryOutcome
impl Debug for EntryOutcome
impl Eq for EntryOutcome
Source§impl PartialEq for EntryOutcome
impl PartialEq for EntryOutcome
Source§fn eq(&self, other: &EntryOutcome) -> bool
fn eq(&self, other: &EntryOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EntryOutcome
Auto Trait Implementations§
impl Freeze for EntryOutcome
impl RefUnwindSafe for EntryOutcome
impl Send for EntryOutcome
impl Sync for EntryOutcome
impl Unpin for EntryOutcome
impl UnsafeUnpin for EntryOutcome
impl UnwindSafe for EntryOutcome
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.