pub enum PredictionUnavailableReasonV2 {
RawSourceIncomplete,
ResolvedSettingsOverflow,
FacetBudgetExceeded,
DependencyClosureIncomplete,
ProfileFactUnknown,
ProjectIntentUnavailable,
MeasurementUnavailable,
SourceSelectorNoMatch,
SourceSelectorAmbiguous,
PrimarySourceUnavailable,
RuntimeAnimationSurvivalUnavailable,
Custom(String),
}Expand description
Stable V2 reason why a required prediction facet is unavailable.
Variants§
RawSourceIncomplete
Loader-owned raw source inventory was partial or unavailable.
ResolvedSettingsOverflow
Resolved actual-clip settings retained only their bounded prefix.
FacetBudgetExceeded
The shared file facet budget replaced omitted candidates with a summary.
DependencyClosureIncomplete
Same-load dependency closure was incomplete.
ProfileFactUnknown
Profile data did not establish a required fact.
Project configuration did not establish a required intent.
Measurement evidence was unavailable.
SourceSelectorNoMatch
A source selector matched no row.
SourceSelectorAmbiguous
A source selector matched multiple rows.
Required primary-source evidence was unavailable.
Runtime asset/clip/track survival is not established by the negative loading gates alone.
Custom(String)
Bounded namespaced extension reason retained from V1.
Implementations§
Trait Implementations§
Source§fn clone(&self) -> PredictionUnavailableReasonV2
fn clone(&self) -> PredictionUnavailableReasonV2
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
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