pub struct DomainApplication {
pub plan_label: String,
pub plan_uuid: String,
pub running_instances: BTreeMap<String, String>,
pub state: AppState,
}Expand description
DomainApplication — D&C §9.1.3. Ein laufender Plan-Run.
Fields§
§plan_label: StringPlan-Label.
plan_uuid: StringPlan-UUID.
running_instances: BTreeMap<String, String>Aktive Instances + Nodes (instance_name → node_name).
state: AppStateLifecycle-Status (Prepared, Launched, Finished).
Trait Implementations§
Source§impl Clone for DomainApplication
impl Clone for DomainApplication
Source§fn clone(&self) -> DomainApplication
fn clone(&self) -> DomainApplication
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 DomainApplication
impl Debug for DomainApplication
Source§impl PartialEq for DomainApplication
impl PartialEq for DomainApplication
Source§fn eq(&self, other: &DomainApplication) -> bool
fn eq(&self, other: &DomainApplication) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DomainApplication
impl StructuralPartialEq for DomainApplication
Auto Trait Implementations§
impl Freeze for DomainApplication
impl RefUnwindSafe for DomainApplication
impl Send for DomainApplication
impl Sync for DomainApplication
impl Unpin for DomainApplication
impl UnsafeUnpin for DomainApplication
impl UnwindSafe for DomainApplication
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