pub enum ItineraryState {
Working,
Finished,
Stalled,
Halted,
}Expand description
What became of a chain.
stalled is the one that matters and the one a list of runs cannot show: every run
succeeded, nothing is live, nothing is queued, and nothing will ever happen again. It is
the failure mode this whole surface exists to make visible.
Variants§
Trait Implementations§
Source§impl Clone for ItineraryState
impl Clone for ItineraryState
impl Copy for ItineraryState
Source§impl Debug for ItineraryState
impl Debug for ItineraryState
Source§impl<'de> Deserialize<'de> for ItineraryState
impl<'de> Deserialize<'de> for ItineraryState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ItineraryState
Source§impl PartialEq for ItineraryState
impl PartialEq for ItineraryState
Source§impl Serialize for ItineraryState
impl Serialize for ItineraryState
impl StructuralPartialEq for ItineraryState
Auto Trait Implementations§
impl Freeze for ItineraryState
impl RefUnwindSafe for ItineraryState
impl Send for ItineraryState
impl Sync for ItineraryState
impl Unpin for ItineraryState
impl UnsafeUnpin for ItineraryState
impl UnwindSafe for ItineraryState
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