pub struct ImplementationDescription {
pub label: String,
pub uuid: String,
pub artifacts: Vec<String>,
pub realizes: String,
pub exec_params: BTreeMap<String, String>,
pub depends_on: Vec<ImplementationDependency>,
}Expand description
ImplementationDescription (IDD) — D&C §6.4.
Beschreibt eine konkrete Component-Implementation: welches Artifact, welche Component-Repository-ID realisiert sie, und welche Konfigurations-Properties hat sie.
Fields§
§label: StringEindeutiger Label (Spec D&C §6.4 label).
uuid: StringUUID (Spec D&C §6.4 UUID).
artifacts: Vec<String>Liste von Artifact-Pfaden (.so/.dll/.jar).
realizes: StringRepository-ID des Components, das diese Implementation realisiert.
exec_params: BTreeMap<String, String>Property-Map (D&C §6.4 execParameter).
depends_on: Vec<ImplementationDependency>Implementation-Dependencies (D&C §6.4 dependsOn).
Trait Implementations§
Source§impl Clone for ImplementationDescription
impl Clone for ImplementationDescription
Source§fn clone(&self) -> ImplementationDescription
fn clone(&self) -> ImplementationDescription
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 ImplementationDescription
impl Debug for ImplementationDescription
Source§impl Default for ImplementationDescription
impl Default for ImplementationDescription
Source§fn default() -> ImplementationDescription
fn default() -> ImplementationDescription
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImplementationDescription
impl PartialEq for ImplementationDescription
Source§fn eq(&self, other: &ImplementationDescription) -> bool
fn eq(&self, other: &ImplementationDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImplementationDescription
impl StructuralPartialEq for ImplementationDescription
Auto Trait Implementations§
impl Freeze for ImplementationDescription
impl RefUnwindSafe for ImplementationDescription
impl Send for ImplementationDescription
impl Sync for ImplementationDescription
impl Unpin for ImplementationDescription
impl UnsafeUnpin for ImplementationDescription
impl UnwindSafe for ImplementationDescription
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