pub struct ListProcessingJobsResponse {
pub next_token: Option<String>,
pub processing_job_summaries: Vec<ProcessingJobSummary>,
}Fields§
§next_token: Option<String>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.
processing_job_summaries: Vec<ProcessingJobSummary>An array of ProcessingJobSummary objects, each listing a processing job.
Trait Implementations§
Source§impl Clone for ListProcessingJobsResponse
impl Clone for ListProcessingJobsResponse
Source§fn clone(&self) -> ListProcessingJobsResponse
fn clone(&self) -> ListProcessingJobsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListProcessingJobsResponse
impl Debug for ListProcessingJobsResponse
Source§impl Default for ListProcessingJobsResponse
impl Default for ListProcessingJobsResponse
Source§fn default() -> ListProcessingJobsResponse
fn default() -> ListProcessingJobsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProcessingJobsResponse
impl<'de> Deserialize<'de> for ListProcessingJobsResponse
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
impl StructuralPartialEq for ListProcessingJobsResponse
Auto Trait Implementations§
impl Freeze for ListProcessingJobsResponse
impl RefUnwindSafe for ListProcessingJobsResponse
impl Send for ListProcessingJobsResponse
impl Sync for ListProcessingJobsResponse
impl Unpin for ListProcessingJobsResponse
impl UnsafeUnpin for ListProcessingJobsResponse
impl UnwindSafe for ListProcessingJobsResponse
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