pub struct Stall {
pub itinerary: ItineraryId,
pub agent: AgentName,
pub missing: Vec<AgentName>,
pub stranded: usize,
pub at: Timestamp,
}Expand description
A chain the Tower has given up on, and why.
Fields§
§itinerary: ItineraryIdThe chain that will not continue.
agent: AgentNameThe agent that was waiting.
missing: Vec<AgentName>Upstreams that never arrived and now never can.
stranded: usizeHow many flights were being held.
Work somebody asked for that will not happen. A count rather than the flights themselves, because the point is to prompt a person to look, not to replay it.
at: TimestampWhen the Tower gave up.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stall
impl<'de> Deserialize<'de> for Stall
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 Stall
impl StructuralPartialEq for Stall
Auto Trait Implementations§
impl Freeze for Stall
impl RefUnwindSafe for Stall
impl Send for Stall
impl Sync for Stall
impl Unpin for Stall
impl UnsafeUnpin for Stall
impl UnwindSafe for Stall
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