pub struct ItineraryList {
pub itineraries: Vec<Itinerary>,
pub stalled: i32,
}Expand description
Chains of work.
Fields§
§itineraries: Vec<Itinerary>Chains, most recently started first.
stalled: i32How many of them are stalled. Counted separately so the number can be shown without reading the list, because it is the one that should prompt somebody to look.
Trait Implementations§
Source§impl Clone for ItineraryList
impl Clone for ItineraryList
Source§impl Debug for ItineraryList
impl Debug for ItineraryList
Source§impl<'de> Deserialize<'de> for ItineraryList
impl<'de> Deserialize<'de> for ItineraryList
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
Source§impl PartialEq for ItineraryList
impl PartialEq for ItineraryList
Source§impl Serialize for ItineraryList
impl Serialize for ItineraryList
impl StructuralPartialEq for ItineraryList
Auto Trait Implementations§
impl Freeze for ItineraryList
impl RefUnwindSafe for ItineraryList
impl Send for ItineraryList
impl Sync for ItineraryList
impl Unpin for ItineraryList
impl UnsafeUnpin for ItineraryList
impl UnwindSafe for ItineraryList
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