#[non_exhaustive]pub enum BackendHealthPosture {
ScalarFixed,
NeverRun,
Testing,
Healthy,
Quarantined,
SynchronizationUnavailable,
SecretPolicyFixed,
}Expand description
Current ordinary backend-health evidence.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ScalarFixed
Scalar execution has no accelerated implementation to self-test.
NeverRun
The selected candidate has not completed its known-answer test.
Testing
A thread is currently running the candidate’s known-answer test.
Healthy
The candidate passed its known-answer test.
Quarantined
The candidate failed an integrity check and is permanently disabled.
This target cannot provide the atomic health latch required for SIMD.
SecretPolicyFixed
The secret scalar boundary is fixed by policy rather than selected by ordinary SIMD dispatch.
Implementations§
Trait Implementations§
Source§impl Clone for BackendHealthPosture
impl Clone for BackendHealthPosture
Source§fn clone(&self) -> BackendHealthPosture
fn clone(&self) -> BackendHealthPosture
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 moreimpl Copy for BackendHealthPosture
Source§impl Debug for BackendHealthPosture
impl Debug for BackendHealthPosture
impl Eq for BackendHealthPosture
Source§impl Hash for BackendHealthPosture
impl Hash for BackendHealthPosture
Source§impl PartialEq for BackendHealthPosture
impl PartialEq for BackendHealthPosture
impl StructuralPartialEq for BackendHealthPosture
Auto Trait Implementations§
impl Freeze for BackendHealthPosture
impl RefUnwindSafe for BackendHealthPosture
impl Send for BackendHealthPosture
impl Sync for BackendHealthPosture
impl Unpin for BackendHealthPosture
impl UnsafeUnpin for BackendHealthPosture
impl UnwindSafe for BackendHealthPosture
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