pub struct JobListResultV2 {
pub value: Vec<JobCollectionItem>,
pub next_link: Option<String>,
}Expand description
The response model for the list job operation.
Fields§
§value: Vec<JobCollectionItem>List of jobs.
next_link: Option<String>The link to the next page.
Implementations§
Trait Implementations§
Source§impl Clone for JobListResultV2
impl Clone for JobListResultV2
Source§fn clone(&self) -> JobListResultV2
fn clone(&self) -> JobListResultV2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Continuable for JobListResultV2
impl Continuable for JobListResultV2
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for JobListResultV2
impl Debug for JobListResultV2
Source§impl Default for JobListResultV2
impl Default for JobListResultV2
Source§fn default() -> JobListResultV2
fn default() -> JobListResultV2
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobListResultV2
impl<'de> Deserialize<'de> for JobListResultV2
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 JobListResultV2
impl PartialEq for JobListResultV2
Source§impl Serialize for JobListResultV2
impl Serialize for JobListResultV2
impl StructuralPartialEq for JobListResultV2
Auto Trait Implementations§
impl Freeze for JobListResultV2
impl RefUnwindSafe for JobListResultV2
impl Send for JobListResultV2
impl Sync for JobListResultV2
impl Unpin for JobListResultV2
impl UnwindSafe for JobListResultV2
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