pub struct ListPipelinesInput {
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListPipelines
action.
Fields§
§next_token: Option<String>
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
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