#[non_exhaustive]pub struct ListPipelinesInputBuilder { /* private fields */ }
Expand description
A builder for ListPipelinesInput
.
Implementations§
source§impl ListPipelinesInputBuilder
impl ListPipelinesInputBuilder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> Result<ListPipelinesInput, BuildError>
pub fn build(self) -> Result<ListPipelinesInput, BuildError>
Consumes the builder and constructs a ListPipelinesInput
.
Trait Implementations§
source§impl Clone for ListPipelinesInputBuilder
impl Clone for ListPipelinesInputBuilder
source§fn clone(&self) -> ListPipelinesInputBuilder
fn clone(&self) -> ListPipelinesInputBuilder
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 ListPipelinesInputBuilder
impl Debug for ListPipelinesInputBuilder
source§impl Default for ListPipelinesInputBuilder
impl Default for ListPipelinesInputBuilder
source§fn default() -> ListPipelinesInputBuilder
fn default() -> ListPipelinesInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListPipelinesInputBuilder> for ListPipelinesInputBuilder
impl PartialEq<ListPipelinesInputBuilder> for ListPipelinesInputBuilder
source§fn eq(&self, other: &ListPipelinesInputBuilder) -> bool
fn eq(&self, other: &ListPipelinesInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListPipelinesInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListPipelinesInputBuilder
impl Send for ListPipelinesInputBuilder
impl Sync for ListPipelinesInputBuilder
impl Unpin for ListPipelinesInputBuilder
impl UnwindSafe for ListPipelinesInputBuilder
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