pub struct DryRunPlan {
pub workflow: DryRunWorkflow,
pub disabled: DryRunDisabled,
pub vars: HashMap<String, String>,
pub tiers: Vec<DryRunTier>,
}Fields§
§workflow: DryRunWorkflow§disabled: DryRunDisabled§vars: HashMap<String, String>§tiers: Vec<DryRunTier>Trait Implementations§
Source§impl Clone for DryRunPlan
impl Clone for DryRunPlan
Source§fn clone(&self) -> DryRunPlan
fn clone(&self) -> DryRunPlan
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 moreSource§impl Debug for DryRunPlan
impl Debug for DryRunPlan
Auto Trait Implementations§
impl Freeze for DryRunPlan
impl RefUnwindSafe for DryRunPlan
impl Send for DryRunPlan
impl Sync for DryRunPlan
impl Unpin for DryRunPlan
impl UnsafeUnpin for DryRunPlan
impl UnwindSafe for DryRunPlan
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