pub struct ListPipelinesInput {
pub marker: Option<String>,
}
Expand description
Contains the parameters for ListPipelines.
Fields§
§marker: Option<String>
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call ListPipelines
with the marker value from the previous call to retrieve the next set of results.
Trait Implementations§
Source§impl Clone for ListPipelinesInput
impl Clone for ListPipelinesInput
Source§fn clone(&self) -> ListPipelinesInput
fn clone(&self) -> ListPipelinesInput
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 ListPipelinesInput
impl Debug for ListPipelinesInput
Source§impl Default for ListPipelinesInput
impl Default for ListPipelinesInput
Source§fn default() -> ListPipelinesInput
fn default() -> ListPipelinesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListPipelinesInput
impl PartialEq for ListPipelinesInput
Source§impl Serialize for ListPipelinesInput
impl Serialize for ListPipelinesInput
impl StructuralPartialEq for ListPipelinesInput
Auto Trait Implementations§
impl Freeze for ListPipelinesInput
impl RefUnwindSafe for ListPipelinesInput
impl Send for ListPipelinesInput
impl Sync for ListPipelinesInput
impl Unpin for ListPipelinesInput
impl UnwindSafe for ListPipelinesInput
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