pub struct PendingList {
pub dispatched_by: Option<String>,
pub pending: Vec<PendingFlight>,
}Expand description
Work waiting to start.
Fields§
§dispatched_by: Option<String>What will pick this work up, or null when nothing will. Null is the honest answer until the supervisor exists, and the dashboard says so rather than showing a queue that looks like it is moving.
pending: Vec<PendingFlight>Queued flights, oldest first.
Trait Implementations§
Source§impl Clone for PendingList
impl Clone for PendingList
Source§impl Debug for PendingList
impl Debug for PendingList
Source§impl<'de> Deserialize<'de> for PendingList
impl<'de> Deserialize<'de> for PendingList
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 PendingList
impl PartialEq for PendingList
Source§impl Serialize for PendingList
impl Serialize for PendingList
impl StructuralPartialEq for PendingList
Auto Trait Implementations§
impl Freeze for PendingList
impl RefUnwindSafe for PendingList
impl Send for PendingList
impl Sync for PendingList
impl Unpin for PendingList
impl UnsafeUnpin for PendingList
impl UnwindSafe for PendingList
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