pub struct ListData {
pub root: String,
pub jobs: Vec<JobSummary>,
pub truncated: bool,
pub skipped: u64,
}Expand description
Response for list command.
Fields§
§root: StringResolved root directory path.
jobs: Vec<JobSummary>Array of job summaries, sorted by started_at descending.
truncated: boolTrue when the result was truncated by –limit.
skipped: u64Number of directories skipped because they could not be read as jobs.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListData
impl<'de> Deserialize<'de> for ListData
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
Auto Trait Implementations§
impl Freeze for ListData
impl RefUnwindSafe for ListData
impl Send for ListData
impl Sync for ListData
impl Unpin for ListData
impl UnsafeUnpin for ListData
impl UnwindSafe for ListData
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