pub struct ListJobsByPipelineRequest {
pub ascending: Option<String>,
pub page_token: Option<String>,
pub pipeline_id: String,
}Expand description
The ListJobsByPipelineRequest structure.
Fields§
§ascending: Option<String> To list jobs in chronological order by the date and time that they were submitted, enter true. To list jobs in reverse chronological order, enter false.
page_token: Option<String> When Elastic Transcoder returns more than one page of results, use pageToken in subsequent GET requests to get each successive page of results.
pipeline_id: StringThe ID of the pipeline for which you want to get job information.
Trait Implementations§
Source§impl Clone for ListJobsByPipelineRequest
impl Clone for ListJobsByPipelineRequest
Source§fn clone(&self) -> ListJobsByPipelineRequest
fn clone(&self) -> ListJobsByPipelineRequest
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 Debug for ListJobsByPipelineRequest
impl Debug for ListJobsByPipelineRequest
Source§impl Default for ListJobsByPipelineRequest
impl Default for ListJobsByPipelineRequest
Source§fn default() -> ListJobsByPipelineRequest
fn default() -> ListJobsByPipelineRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListJobsByPipelineRequest
Auto Trait Implementations§
impl Freeze for ListJobsByPipelineRequest
impl RefUnwindSafe for ListJobsByPipelineRequest
impl Send for ListJobsByPipelineRequest
impl Sync for ListJobsByPipelineRequest
impl Unpin for ListJobsByPipelineRequest
impl UnwindSafe for ListJobsByPipelineRequest
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