pub struct ExplainRejectedIndex {
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 carried by the planner rejection.
reason: Option<String>Planner-owned rejection reason code.
label: StringStable rendered planner rejection label.
Trait Implementations§
Source§impl Clone for ExplainRejectedIndex
impl Clone for ExplainRejectedIndex
Source§fn clone(&self) -> ExplainRejectedIndex
fn clone(&self) -> ExplainRejectedIndex
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 ExplainRejectedIndex
impl Debug for ExplainRejectedIndex
impl Eq for ExplainRejectedIndex
Source§impl PartialEq for ExplainRejectedIndex
impl PartialEq for ExplainRejectedIndex
impl StructuralPartialEq for ExplainRejectedIndex
Auto Trait Implementations§
impl Freeze for ExplainRejectedIndex
impl RefUnwindSafe for ExplainRejectedIndex
impl Send for ExplainRejectedIndex
impl Sync for ExplainRejectedIndex
impl Unpin for ExplainRejectedIndex
impl UnsafeUnpin for ExplainRejectedIndex
impl UnwindSafe for ExplainRejectedIndex
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