pub enum PredictionUnavailableReasonV1 {
RawSourceIncomplete,
DependencyClosureIncomplete,
ProfileFactUnknown,
ProjectIntentUnavailable,
MeasurementUnavailable,
SourceSelectorNoMatch,
SourceSelectorAmbiguous,
PrimarySourceUnavailable,
Custom(String),
}Expand description
Stable reason prediction work was required but could not be completed.
Variants§
RawSourceIncomplete
Required raw-source evidence was incomplete.
DependencyClosureIncomplete
Required dependency closure was incomplete.
ProfileFactUnknown
A required immutable profile fact was unknown.
Required project intent was unavailable.
Required validated measurement was unavailable.
SourceSelectorNoMatch
A source selector matched no row.
SourceSelectorAmbiguous
A source selector matched multiple rows.
Required primary-source evidence was unavailable.
Custom(String)
Namespaced custom-check reason.
Implementations§
Trait Implementations§
Source§fn clone(&self) -> PredictionUnavailableReasonV1
fn clone(&self) -> PredictionUnavailableReasonV1
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§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
Source§fn cmp(&self, other: &PredictionUnavailableReasonV1) -> Ordering
fn cmp(&self, other: &PredictionUnavailableReasonV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Auto Trait Implementations§
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