pub struct WorkflowPlan { /* private fields */ }Implementations§
Source§impl WorkflowPlan
impl WorkflowPlan
pub fn from_config( config: &WorkflowConfig, ) -> Result<Self, WorkflowValidationError>
pub fn goal(&self) -> &str
pub fn max_concurrent(&self) -> u8
pub fn phases(&self) -> &[PhasePlan]
pub fn phase_names(&self) -> impl Iterator<Item = &str>
Trait Implementations§
Source§impl Clone for WorkflowPlan
impl Clone for WorkflowPlan
Source§fn clone(&self) -> WorkflowPlan
fn clone(&self) -> WorkflowPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowPlan
impl Debug for WorkflowPlan
impl Eq for WorkflowPlan
Source§impl PartialEq for WorkflowPlan
impl PartialEq for WorkflowPlan
Source§fn eq(&self, other: &WorkflowPlan) -> bool
fn eq(&self, other: &WorkflowPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WorkflowPlan
Auto Trait Implementations§
impl Freeze for WorkflowPlan
impl RefUnwindSafe for WorkflowPlan
impl Send for WorkflowPlan
impl Sync for WorkflowPlan
impl Unpin for WorkflowPlan
impl UnsafeUnpin for WorkflowPlan
impl UnwindSafe for WorkflowPlan
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