pub struct ListExecutionsOutput {
pub executions: Vec<ExecutionListItem>,
pub next_token: Option<String>,
}
Fields§
§executions: Vec<ExecutionListItem>
The list of matching executions.
next_token: Option<String>
If nextToken
is returned, there are more results available. The value of nextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Trait Implementations§
Source§impl Clone for ListExecutionsOutput
impl Clone for ListExecutionsOutput
Source§fn clone(&self) -> ListExecutionsOutput
fn clone(&self) -> ListExecutionsOutput
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 ListExecutionsOutput
impl Debug for ListExecutionsOutput
Source§impl Default for ListExecutionsOutput
impl Default for ListExecutionsOutput
Source§fn default() -> ListExecutionsOutput
fn default() -> ListExecutionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListExecutionsOutput
impl<'de> Deserialize<'de> for ListExecutionsOutput
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 ListExecutionsOutput
impl PartialEq for ListExecutionsOutput
impl StructuralPartialEq for ListExecutionsOutput
Auto Trait Implementations§
impl Freeze for ListExecutionsOutput
impl RefUnwindSafe for ListExecutionsOutput
impl Send for ListExecutionsOutput
impl Sync for ListExecutionsOutput
impl Unpin for ListExecutionsOutput
impl UnwindSafe for ListExecutionsOutput
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