pub struct WorkflowListBuilder<T>where
T: TryFromResponse,{ /* private fields */ }Available on crate feature
workflows only.Implementations§
Source§impl<T> WorkflowListBuilder<T>where
T: TryFromResponse,
impl<T> WorkflowListBuilder<T>where
T: TryFromResponse,
pub fn name<V>(self, value: V) -> Selfwhere
V: Display,
pub fn category<V>(self, value: V) -> Selfwhere
V: Into<WorkflowCategory>,
pub fn system<V>(self, value: V) -> Selfwhere
V: Display,
pub fn status<V>(self, value: V) -> Selfwhere
V: Into<WorkflowStatus>,
pub fn owner<V>(self, value: V) -> Selfwhere
V: Display,
pub fn vendor<V>(self, value: V) -> Selfwhere
V: Display,
pub async fn build(self) -> Result<T>
Trait Implementations§
Source§impl<T> Clone for WorkflowListBuilder<T>where
T: TryFromResponse + Clone,
impl<T> Clone for WorkflowListBuilder<T>where
T: TryFromResponse + Clone,
Source§fn clone(&self) -> WorkflowListBuilder<T>
fn clone(&self) -> WorkflowListBuilder<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for WorkflowListBuilder<T>
impl<T> !RefUnwindSafe for WorkflowListBuilder<T>
impl<T> Send for WorkflowListBuilder<T>where
T: Send,
impl<T> Sync for WorkflowListBuilder<T>where
T: Sync,
impl<T> Unpin for WorkflowListBuilder<T>where
T: Unpin,
impl<T> !UnwindSafe for WorkflowListBuilder<T>
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