pub struct PackagedComponentImplementation {
pub component_id: String,
pub implementations: Vec<ImplementationDescription>,
}Expand description
PackagedComponentImplementation — D&C §6.6.
Verknuepft eine Component-Repository-ID mit den verfuegbaren Implementations.
Fields§
§component_id: StringComponent-Repository-ID.
implementations: Vec<ImplementationDescription>Liste der Implementations (z.B. eine fuer Linux, eine fuer Windows).
Trait Implementations§
Source§impl Clone for PackagedComponentImplementation
impl Clone for PackagedComponentImplementation
Source§fn clone(&self) -> PackagedComponentImplementation
fn clone(&self) -> PackagedComponentImplementation
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 Default for PackagedComponentImplementation
impl Default for PackagedComponentImplementation
Source§fn default() -> PackagedComponentImplementation
fn default() -> PackagedComponentImplementation
Returns the “default value” for a type. Read more
Source§impl PartialEq for PackagedComponentImplementation
impl PartialEq for PackagedComponentImplementation
Source§fn eq(&self, other: &PackagedComponentImplementation) -> bool
fn eq(&self, other: &PackagedComponentImplementation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PackagedComponentImplementation
impl StructuralPartialEq for PackagedComponentImplementation
Auto Trait Implementations§
impl Freeze for PackagedComponentImplementation
impl RefUnwindSafe for PackagedComponentImplementation
impl Send for PackagedComponentImplementation
impl Sync for PackagedComponentImplementation
impl Unpin for PackagedComponentImplementation
impl UnsafeUnpin for PackagedComponentImplementation
impl UnwindSafe for PackagedComponentImplementation
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