pub struct NodeApplication {
pub node: String,
pub instances: Vec<InstanceDeploymentDescription>,
pub active: Vec<String>,
}Expand description
NodeApplication — D&C §9.2.3.
Fields§
§node: StringNode-Name.
instances: Vec<InstanceDeploymentDescription>Liste der lokalen Instances.
active: Vec<String>Aktive (post-launch) Instance-Namen.
Trait Implementations§
Source§impl Clone for NodeApplication
impl Clone for NodeApplication
Source§fn clone(&self) -> NodeApplication
fn clone(&self) -> NodeApplication
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 NodeApplication
impl Debug for NodeApplication
Source§impl Default for NodeApplication
impl Default for NodeApplication
Source§fn default() -> NodeApplication
fn default() -> NodeApplication
Returns the “default value” for a type. Read more
Source§impl PartialEq for NodeApplication
impl PartialEq for NodeApplication
Source§fn eq(&self, other: &NodeApplication) -> bool
fn eq(&self, other: &NodeApplication) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NodeApplication
impl StructuralPartialEq for NodeApplication
Auto Trait Implementations§
impl Freeze for NodeApplication
impl RefUnwindSafe for NodeApplication
impl Send for NodeApplication
impl Sync for NodeApplication
impl Unpin for NodeApplication
impl UnsafeUnpin for NodeApplication
impl UnwindSafe for NodeApplication
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