pub enum DebugTraceOutcome {
Planned,
Written,
Failed,
}Expand description
Result of a single generation decision in an alp trace.
Variants§
Planned
Output was planned but not written.
Written
Output was written to disk.
Failed
Generation failed.
Trait Implementations§
Source§impl Clone for DebugTraceOutcome
impl Clone for DebugTraceOutcome
Source§fn clone(&self) -> DebugTraceOutcome
fn clone(&self) -> DebugTraceOutcome
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 DebugTraceOutcome
Source§impl Debug for DebugTraceOutcome
impl Debug for DebugTraceOutcome
impl Eq for DebugTraceOutcome
Source§impl PartialEq for DebugTraceOutcome
impl PartialEq for DebugTraceOutcome
Source§fn eq(&self, other: &DebugTraceOutcome) -> bool
fn eq(&self, other: &DebugTraceOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DebugTraceOutcome
impl Serialize for DebugTraceOutcome
impl StructuralPartialEq for DebugTraceOutcome
Auto Trait Implementations§
impl Freeze for DebugTraceOutcome
impl RefUnwindSafe for DebugTraceOutcome
impl Send for DebugTraceOutcome
impl Sync for DebugTraceOutcome
impl Unpin for DebugTraceOutcome
impl UnsafeUnpin for DebugTraceOutcome
impl UnwindSafe for DebugTraceOutcome
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.