pub enum CatalogAssessment {
RuntimeCandidate {
registry_id: &'static str,
},
Planned,
Unavailable {
reason: CatalogUnavailableReason,
},
}Expand description
Documentation assessment kept separate from runtime capability truth.
Variants§
RuntimeCandidate
A lower-tier runtime row exists and remains a candidate, never complete.
Planned
A future profile is classified but has no runtime capability claim.
The profile is classified but unavailable at the fixed support contract.
Trait Implementations§
Source§impl Clone for CatalogAssessment
impl Clone for CatalogAssessment
Source§fn clone(&self) -> CatalogAssessment
fn clone(&self) -> CatalogAssessment
Returns a duplicate of the value. Read more
1.0.0 · 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 CatalogAssessment
impl Debug for CatalogAssessment
Source§impl PartialEq for CatalogAssessment
impl PartialEq for CatalogAssessment
Source§impl Serialize for CatalogAssessment
impl Serialize for CatalogAssessment
impl Copy for CatalogAssessment
impl Eq for CatalogAssessment
impl StructuralPartialEq for CatalogAssessment
Auto Trait Implementations§
impl Freeze for CatalogAssessment
impl RefUnwindSafe for CatalogAssessment
impl Send for CatalogAssessment
impl Sync for CatalogAssessment
impl Unpin for CatalogAssessment
impl UnwindSafe for CatalogAssessment
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.