pub struct ListJobsByStatusResponse {
pub jobs: Option<Vec<Job>>,
pub next_page_token: Option<String>,
}
Expand description
The ListJobsByStatusResponse
structure.
Fields§
§jobs: Option<Vec<Job>>
An array of Job
objects that have the specified status.
next_page_token: Option<String>
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
Trait Implementations§
Source§impl Clone for ListJobsByStatusResponse
impl Clone for ListJobsByStatusResponse
Source§fn clone(&self) -> ListJobsByStatusResponse
fn clone(&self) -> ListJobsByStatusResponse
Returns a copy 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 Debug for ListJobsByStatusResponse
impl Debug for ListJobsByStatusResponse
Source§impl Default for ListJobsByStatusResponse
impl Default for ListJobsByStatusResponse
Source§fn default() -> ListJobsByStatusResponse
fn default() -> ListJobsByStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListJobsByStatusResponse
impl<'de> Deserialize<'de> for ListJobsByStatusResponse
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 ListJobsByStatusResponse
impl PartialEq for ListJobsByStatusResponse
impl StructuralPartialEq for ListJobsByStatusResponse
Auto Trait Implementations§
impl Freeze for ListJobsByStatusResponse
impl RefUnwindSafe for ListJobsByStatusResponse
impl Send for ListJobsByStatusResponse
impl Sync for ListJobsByStatusResponse
impl Unpin for ListJobsByStatusResponse
impl UnwindSafe for ListJobsByStatusResponse
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