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) — erzeugt einen
DomainApplicationManager.
§Errors
PlanError wenn der Plan inkonsistent ist.
Sourcepub fn managed_plans(&self) -> &[String]
pub fn managed_plans(&self) -> &[String]
Spec §9.1.1 getManagers — Liste aller Plan-Labels, fuer die
dieses ExecutionManager preparePlan aufgerufen hat.
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
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 Eq for ExecutionManager
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