pub struct ListTaskExecutionsResponse {
pub next_token: Option<String>,
pub task_executions: Option<Vec<TaskExecutionListEntry>>,
}
Expand description
ListTaskExecutionsResponse
Fields§
§next_token: Option<String>
An opaque string that indicates the position at which to begin returning the next list of executed tasks.
task_executions: Option<Vec<TaskExecutionListEntry>>
A list of executed tasks.
Trait Implementations§
Source§impl Clone for ListTaskExecutionsResponse
impl Clone for ListTaskExecutionsResponse
Source§fn clone(&self) -> ListTaskExecutionsResponse
fn clone(&self) -> ListTaskExecutionsResponse
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 ListTaskExecutionsResponse
impl Debug for ListTaskExecutionsResponse
Source§impl Default for ListTaskExecutionsResponse
impl Default for ListTaskExecutionsResponse
Source§fn default() -> ListTaskExecutionsResponse
fn default() -> ListTaskExecutionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTaskExecutionsResponse
impl<'de> Deserialize<'de> for ListTaskExecutionsResponse
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 ListTaskExecutionsResponse
Auto Trait Implementations§
impl Freeze for ListTaskExecutionsResponse
impl RefUnwindSafe for ListTaskExecutionsResponse
impl Send for ListTaskExecutionsResponse
impl Sync for ListTaskExecutionsResponse
impl Unpin for ListTaskExecutionsResponse
impl UnwindSafe for ListTaskExecutionsResponse
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