pub struct ImplementationDependency {
pub name: String,
pub min_version: String,
}Expand description
Implementation-Dependency — D&C §6.5.
Spec §6.5: name + version + Required-Capabilities.
Fields§
§name: StringRequired-Capability-Name (z.B. Java_Runtime).
min_version: StringMindestversion.
Trait Implementations§
Source§impl Clone for ImplementationDependency
impl Clone for ImplementationDependency
Source§fn clone(&self) -> ImplementationDependency
fn clone(&self) -> ImplementationDependency
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 ImplementationDependency
impl Debug for ImplementationDependency
Source§impl Default for ImplementationDependency
impl Default for ImplementationDependency
Source§fn default() -> ImplementationDependency
fn default() -> ImplementationDependency
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImplementationDependency
impl PartialEq for ImplementationDependency
Source§fn eq(&self, other: &ImplementationDependency) -> bool
fn eq(&self, other: &ImplementationDependency) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImplementationDependency
impl StructuralPartialEq for ImplementationDependency
Auto Trait Implementations§
impl Freeze for ImplementationDependency
impl RefUnwindSafe for ImplementationDependency
impl Send for ImplementationDependency
impl Sync for ImplementationDependency
impl Unpin for ImplementationDependency
impl UnsafeUnpin for ImplementationDependency
impl UnwindSafe for ImplementationDependency
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