#[non_exhaustive]pub enum RealtimeSelectionIssue {
Show 25 variants
MissingArchitectureProof,
ArchitectureIdentityMismatch,
SpeechScheduleIdentityMismatch,
StateLayoutIdentityMismatch,
TopologyPolicyIdentityMismatch,
SourceIdentityMismatch,
ExecutionIdentityNotAdmitted,
MissingNeuralOperator {
operator: String,
},
WeightLoweringUnavailable {
index: usize,
target: RealtimeIdentity,
},
ResidencyNotAdmitted,
ResidencyUnavailable,
TopologyNotAdmitted,
RankOutOfRange,
TensorParallelWidthUnavailable,
MissingMechanism(RealtimeMechanism),
CompletionPolicyUnavailable,
StateComponentUnavailable {
layer: usize,
component: String,
},
MissingStateCheckpoint,
MissingStateRollback,
MissingStateReset,
MissingStateObservationRetention,
MissingPersistentState,
MissingOutputObservation,
MissingActivationInspection,
ObservationUnavailable {
observation: RealtimeIdentity,
},
}Expand description
One stable fail-closed realtime selection issue.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
MissingArchitectureProof
No architecture proof was supplied.
ArchitectureIdentityMismatch
Proof names another architecture.
SpeechScheduleIdentityMismatch
Proof names another schedule.
StateLayoutIdentityMismatch
Proof names another state layout.
TopologyPolicyIdentityMismatch
Proof names another topology policy.
SourceIdentityMismatch
Request names another source artifact.
ExecutionIdentityNotAdmitted
Requested execution configuration was not admitted.
MissingNeuralOperator
A required optional neural operator is unavailable.
A required named geometry-bearing weight lowering is unavailable.
ResidencyNotAdmitted
Requested residency was not admitted by the architecture.
Backend cannot implement requested residency.
TopologyNotAdmitted
Architecture did not admit the proven topology.
RankOutOfRange
Proven rank lies outside the topology.
Backend cannot realize the requested tensor-parallel width.
MissingMechanism(RealtimeMechanism)
A required generic mechanism is unavailable.
Backend cannot safely apply the requested completion timeout disposition.
No unique compatible mechanism exists for one architecture state component.
MissingStateCheckpoint
State checkpointing is required for unpublished realtime branches.
MissingStateRollback
State rollback is required for discarded realtime branches.
MissingStateReset
State reset is required at architecture-declared frame seams.
MissingStateObservationRetention
Observation must retain every referenced state component.
MissingPersistentState
Persistent model-state storage is unavailable.
MissingOutputObservation
Requested completed-output observation is unavailable.
MissingActivationInspection
Requested activation inspection is unavailable.
One exact requested activation observation is unavailable.
Trait Implementations§
Source§impl Clone for RealtimeSelectionIssue
impl Clone for RealtimeSelectionIssue
Source§fn clone(&self) -> RealtimeSelectionIssue
fn clone(&self) -> RealtimeSelectionIssue
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for RealtimeSelectionIssue
impl Debug for RealtimeSelectionIssue
Source§impl Display for RealtimeSelectionIssue
impl Display for RealtimeSelectionIssue
impl Eq for RealtimeSelectionIssue
Source§impl Error for RealtimeSelectionIssue
impl Error for RealtimeSelectionIssue
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()