pub struct ExplainRejectedIndexV1 {
pub index_name: Option<String>,
pub reason: Option<String>,
pub label: String,
}Expand description
Rejected index candidate summary recorded by the planner.
Fields§
§index_name: Option<String>Semantic index name when parsed from the planner rejection label.
reason: Option<String>Planner-owned rejection reason code when parsed from the rejection label.
label: StringOriginal planner rejection label.
Trait Implementations§
Source§impl Clone for ExplainRejectedIndexV1
impl Clone for ExplainRejectedIndexV1
Source§fn clone(&self) -> ExplainRejectedIndexV1
fn clone(&self) -> ExplainRejectedIndexV1
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§impl Debug for ExplainRejectedIndexV1
impl Debug for ExplainRejectedIndexV1
Source§impl PartialEq for ExplainRejectedIndexV1
impl PartialEq for ExplainRejectedIndexV1
Source§fn eq(&self, other: &ExplainRejectedIndexV1) -> bool
fn eq(&self, other: &ExplainRejectedIndexV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExplainRejectedIndexV1
impl StructuralPartialEq for ExplainRejectedIndexV1
Auto Trait Implementations§
impl Freeze for ExplainRejectedIndexV1
impl RefUnwindSafe for ExplainRejectedIndexV1
impl Send for ExplainRejectedIndexV1
impl Sync for ExplainRejectedIndexV1
impl Unpin for ExplainRejectedIndexV1
impl UnsafeUnpin for ExplainRejectedIndexV1
impl UnwindSafe for ExplainRejectedIndexV1
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