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 — unique identification.
uuid: StringUUID of the implementation.
artifacts: Vec<String>List of artifact paths.
realizes: StringComponent repository ID that this implementation realizes.
Implementations§
Source§impl ImplementationDescriptor
impl ImplementationDescriptor
Sourcepub fn for_connector(impl_: &ConnectorImplementation) -> Self
pub fn for_connector(impl_: &ConnectorImplementation) -> Self
Creates an IDD for an 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
impl Eq for ImplementationDescriptor
Source§impl PartialEq for ImplementationDescriptor
impl PartialEq 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