pub struct ListPipelines<'a> { /* private fields */ }
Expand description
Builder for Client::list_pipelines
Implementations§
Source§impl<'a> ListPipelines<'a>
impl<'a> ListPipelines<'a>
pub fn new(client: &'a Client) -> Self
pub fn selector<V>(self, value: V) -> Selfwhere
V: TryInto<PipelineFieldSelector>,
Sourcepub async fn send(
self,
) -> Result<ResponseValue<Vec<PipelineSelectedInfo>>, Error<ErrorResponse>>
pub async fn send( self, ) -> Result<ResponseValue<Vec<PipelineSelectedInfo>>, Error<ErrorResponse>>
Sends a GET
request to /v0/pipelines
Trait Implementations§
Source§impl<'a> Clone for ListPipelines<'a>
impl<'a> Clone for ListPipelines<'a>
Source§fn clone(&self) -> ListPipelines<'a>
fn clone(&self) -> ListPipelines<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for ListPipelines<'a>
impl<'a> !RefUnwindSafe for ListPipelines<'a>
impl<'a> Send for ListPipelines<'a>
impl<'a> Sync for ListPipelines<'a>
impl<'a> Unpin for ListPipelines<'a>
impl<'a> !UnwindSafe for ListPipelines<'a>
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