pub struct JobsListing {
pub jobs: Vec<ScheduledJob>,
pub sources: Vec<JobSource>,
}Expand description
Result of a jobs.list: the rows plus every store that was consulted.
Fields§
§jobs: Vec<ScheduledJob>Uniform rows, harness-major then store order.
sources: Vec<JobSource>Stores consulted, including the ones that were absent.
Trait Implementations§
Source§impl Clone for JobsListing
impl Clone for JobsListing
Source§fn clone(&self) -> JobsListing
fn clone(&self) -> JobsListing
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 moreSource§impl Debug for JobsListing
impl Debug for JobsListing
Source§impl<'de> Deserialize<'de> for JobsListing
impl<'de> Deserialize<'de> for JobsListing
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 JobsListing
impl PartialEq for JobsListing
Source§impl Serialize for JobsListing
impl Serialize for JobsListing
impl StructuralPartialEq for JobsListing
Auto Trait Implementations§
impl Freeze for JobsListing
impl RefUnwindSafe for JobsListing
impl Send for JobsListing
impl Sync for JobsListing
impl Unpin for JobsListing
impl UnsafeUnpin for JobsListing
impl UnwindSafe for JobsListing
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