pub struct PackagedComponentImplementation {
pub component_id: String,
pub implementations: Vec<ImplementationDescription>,
}Expand description
PackagedComponentImplementation — D&C §6.6.
Links a component repository ID with the available implementations.
Fields§
§component_id: StringComponent repository ID.
implementations: Vec<ImplementationDescription>List of implementations (e.g. one for Linux, one for 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
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