pub struct ExecutionManager { /* private fields */ }Expand description
ExecutionManager — D&C §9.1.1. Top-level service.
Implementations§
Source§impl ExecutionManager
impl ExecutionManager
Sourcepub fn prepare_plan(
&mut self,
plan: DeploymentPlan,
) -> Result<DomainApplicationManager, PlanError>
pub fn prepare_plan( &mut self, plan: DeploymentPlan, ) -> Result<DomainApplicationManager, PlanError>
Spec §9.1.1 preparePlan(DeploymentPlan) — creates a
DomainApplicationManager.
§Errors
PlanError if the plan is inconsistent.
Sourcepub fn managed_plans(&self) -> &[String]
pub fn managed_plans(&self) -> &[String]
Spec §9.1.1 getManagers — list of all plan labels for which
this ExecutionManager has called preparePlan.
Trait Implementations§
Source§impl Clone for ExecutionManager
impl Clone for ExecutionManager
Source§fn clone(&self) -> ExecutionManager
fn clone(&self) -> ExecutionManager
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 ExecutionManager
impl Debug for ExecutionManager
Source§impl Default for ExecutionManager
impl Default for ExecutionManager
Source§fn default() -> ExecutionManager
fn default() -> ExecutionManager
Returns the “default value” for a type. Read more
impl Eq for ExecutionManager
Source§impl PartialEq for ExecutionManager
impl PartialEq for ExecutionManager
Source§fn eq(&self, other: &ExecutionManager) -> bool
fn eq(&self, other: &ExecutionManager) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionManager
Auto Trait Implementations§
impl Freeze for ExecutionManager
impl RefUnwindSafe for ExecutionManager
impl Send for ExecutionManager
impl Sync for ExecutionManager
impl Unpin for ExecutionManager
impl UnsafeUnpin for ExecutionManager
impl UnwindSafe for ExecutionManager
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