pub struct ListStepsOutput {
pub marker: Option<String>,
pub steps: Option<Vec<StepSummary>>,
}
Expand description
This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.
Fields§
§marker: Option<String>
The pagination token that indicates the next set of results to retrieve.
steps: Option<Vec<StepSummary>>
The filtered list of steps for the cluster.
Trait Implementations§
Source§impl Clone for ListStepsOutput
impl Clone for ListStepsOutput
Source§fn clone(&self) -> ListStepsOutput
fn clone(&self) -> ListStepsOutput
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 ListStepsOutput
impl Debug for ListStepsOutput
Source§impl Default for ListStepsOutput
impl Default for ListStepsOutput
Source§fn default() -> ListStepsOutput
fn default() -> ListStepsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListStepsOutput
impl<'de> Deserialize<'de> for ListStepsOutput
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 ListStepsOutput
impl PartialEq for ListStepsOutput
impl StructuralPartialEq for ListStepsOutput
Auto Trait Implementations§
impl Freeze for ListStepsOutput
impl RefUnwindSafe for ListStepsOutput
impl Send for ListStepsOutput
impl Sync for ListStepsOutput
impl Unpin for ListStepsOutput
impl UnwindSafe for ListStepsOutput
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