pub struct PhasePlan {
pub name: String,
pub parallel: bool,
pub on_failure: FailurePolicy,
pub tasks: Vec<Task>,
}Fields§
§name: String§parallel: bool§on_failure: FailurePolicy§tasks: Vec<Task>Trait Implementations§
impl Eq for PhasePlan
impl StructuralPartialEq for PhasePlan
Auto Trait Implementations§
impl Freeze for PhasePlan
impl RefUnwindSafe for PhasePlan
impl Send for PhasePlan
impl Sync for PhasePlan
impl Unpin for PhasePlan
impl UnsafeUnpin for PhasePlan
impl UnwindSafe for PhasePlan
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