#[non_exhaustive]pub struct GetMlTaskRunsOutput {
pub task_runs: Option<Vec<TaskRun>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.task_runs: Option<Vec<TaskRun>>A list of task runs that are associated with the transform.
next_token: Option<String>A pagination token, if more results are available.
Implementations§
source§impl GetMlTaskRunsOutput
impl GetMlTaskRunsOutput
sourcepub fn builder() -> GetMlTaskRunsOutputBuilder
pub fn builder() -> GetMlTaskRunsOutputBuilder
Creates a new builder-style object to manufacture GetMlTaskRunsOutput.
Trait Implementations§
source§impl Clone for GetMlTaskRunsOutput
impl Clone for GetMlTaskRunsOutput
source§fn clone(&self) -> GetMlTaskRunsOutput
fn clone(&self) -> GetMlTaskRunsOutput
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 GetMlTaskRunsOutput
impl Debug for GetMlTaskRunsOutput
source§impl PartialEq<GetMlTaskRunsOutput> for GetMlTaskRunsOutput
impl PartialEq<GetMlTaskRunsOutput> for GetMlTaskRunsOutput
source§fn eq(&self, other: &GetMlTaskRunsOutput) -> bool
fn eq(&self, other: &GetMlTaskRunsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetMlTaskRunsOutput
impl RequestId for GetMlTaskRunsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetMlTaskRunsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetMlTaskRunsOutput
impl Send for GetMlTaskRunsOutput
impl Sync for GetMlTaskRunsOutput
impl Unpin for GetMlTaskRunsOutput
impl UnwindSafe for GetMlTaskRunsOutput
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