pub struct ImplementationDescriptor {
pub label: String,
pub uuid: String,
pub artifacts: Vec<String>,
pub realizes: String,
}Expand description
IDD — Implementation Description Descriptor (D&C §6.4).
Fields§
§label: Stringlabel — eindeutige Identifizierung.
uuid: StringUUID der Implementation.
artifacts: Vec<String>Liste von Artifact-Paths.
realizes: StringComponent-Repository-ID, die diese Implementation realisiert.
Implementations§
Source§impl ImplementationDescriptor
impl ImplementationDescriptor
Sourcepub fn for_connector(impl_: &ConnectorImplementation) -> Self
pub fn for_connector(impl_: &ConnectorImplementation) -> Self
Erzeugt eine IDD fuer einen AMI4CCM-Connector. Spec §7.8 + D&C §6.4.
Trait Implementations§
Source§impl Clone for ImplementationDescriptor
impl Clone for ImplementationDescriptor
Source§fn clone(&self) -> ImplementationDescriptor
fn clone(&self) -> ImplementationDescriptor
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 ImplementationDescriptor
impl Debug for ImplementationDescriptor
Source§impl PartialEq for ImplementationDescriptor
impl PartialEq for ImplementationDescriptor
Source§fn eq(&self, other: &ImplementationDescriptor) -> bool
fn eq(&self, other: &ImplementationDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImplementationDescriptor
impl StructuralPartialEq for ImplementationDescriptor
Auto Trait Implementations§
impl Freeze for ImplementationDescriptor
impl RefUnwindSafe for ImplementationDescriptor
impl Send for ImplementationDescriptor
impl Sync for ImplementationDescriptor
impl Unpin for ImplementationDescriptor
impl UnsafeUnpin for ImplementationDescriptor
impl UnwindSafe for ImplementationDescriptor
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