pub enum ProjectionRuntimeUnavailabilityReason {
None,
NoRuntime,
VectorEquivalenceDisabled,
}Expand description
The reason ProjectionRuntimeStatus::runtime_embedder_available is false.
This facade is deliberately distinct from the internal lifecycle
ProjectionStatus: it describes this open engine session’s ability to run
the shared dense pipeline, not the terminal state of a canonical row.
Variants§
None
A usable dense runtime is attached, so there is no unavailability.
NoRuntime
This engine session was opened without an attached embedder.
VectorEquivalenceDisabled
The attached embedder failed the existing vector-equivalence guard.
Implementations§
Trait Implementations§
Source§fn clone(&self) -> ProjectionRuntimeUnavailabilityReason
fn clone(&self) -> ProjectionRuntimeUnavailabilityReason
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 moreAuto 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