pub struct CandidateMetadata {
pub instance: PackageInstanceId,
pub dependencies: Vec<ResolutionRequirement>,
pub features: BTreeMap<String, BTreeSet<String>>,
pub required_capabilities: BTreeSet<HostCapability>,
pub runmat_version: Option<VersionReq>,
pub singleton: bool,
pub yanked: bool,
pub available_offline: bool,
pub target_artifacts: BTreeSet<TargetPredicate>,
pub registry_metadata: Option<RegistryReleaseMetadata>,
}Fields§
§instance: PackageInstanceId§dependencies: Vec<ResolutionRequirement>§features: BTreeMap<String, BTreeSet<String>>§required_capabilities: BTreeSet<HostCapability>§runmat_version: Option<VersionReq>§singleton: bool§yanked: bool§available_offline: bool§target_artifacts: BTreeSet<TargetPredicate>§registry_metadata: Option<RegistryReleaseMetadata>Trait Implementations§
Source§impl Clone for CandidateMetadata
impl Clone for CandidateMetadata
Source§fn clone(&self) -> CandidateMetadata
fn clone(&self) -> CandidateMetadata
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 CandidateMetadata
impl Debug for CandidateMetadata
Source§impl<'de> Deserialize<'de> for CandidateMetadata
impl<'de> Deserialize<'de> for CandidateMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CandidateMetadata
Source§impl PartialEq for CandidateMetadata
impl PartialEq for CandidateMetadata
Source§impl Serialize for CandidateMetadata
impl Serialize for CandidateMetadata
impl StructuralPartialEq for CandidateMetadata
Auto Trait Implementations§
impl Freeze for CandidateMetadata
impl RefUnwindSafe for CandidateMetadata
impl Send for CandidateMetadata
impl Sync for CandidateMetadata
impl Unpin for CandidateMetadata
impl UnsafeUnpin for CandidateMetadata
impl UnwindSafe for CandidateMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.