pub struct JobList {
pub jobs: Vec<Job>,
pub has_more: bool,
pub next_cursor: Option<String>,
}Expand description
Paginated list of jobs.
Fields§
§jobs: Vec<Job>§has_more: bool§next_cursor: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobList
impl<'de> Deserialize<'de> for JobList
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 JobList
impl RefUnwindSafe for JobList
impl Send for JobList
impl Sync for JobList
impl Unpin for JobList
impl UnsafeUnpin for JobList
impl UnwindSafe for JobList
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