pub struct ExplainSelectedAccessV1 {
pub kind: ExplainAccessDecisionKind,
pub index_name: Option<String>,
pub label: String,
pub reason: &'static str,
}Expand description
Selected access path summary inside an access-decision explain payload.
Fields§
§kind: ExplainAccessDecisionKindSelected access kind.
index_name: Option<String>Selected semantic index name, when the selected route is index-backed.
label: StringPlanner access label used for candidate matching and diagnostics.
reason: &'static strPlanner-owned selected reason code.
Trait Implementations§
Source§impl Clone for ExplainSelectedAccessV1
impl Clone for ExplainSelectedAccessV1
Source§fn clone(&self) -> ExplainSelectedAccessV1
fn clone(&self) -> ExplainSelectedAccessV1
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 ExplainSelectedAccessV1
impl Debug for ExplainSelectedAccessV1
Source§impl PartialEq for ExplainSelectedAccessV1
impl PartialEq for ExplainSelectedAccessV1
Source§fn eq(&self, other: &ExplainSelectedAccessV1) -> bool
fn eq(&self, other: &ExplainSelectedAccessV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExplainSelectedAccessV1
impl StructuralPartialEq for ExplainSelectedAccessV1
Auto Trait Implementations§
impl Freeze for ExplainSelectedAccessV1
impl RefUnwindSafe for ExplainSelectedAccessV1
impl Send for ExplainSelectedAccessV1
impl Sync for ExplainSelectedAccessV1
impl Unpin for ExplainSelectedAccessV1
impl UnsafeUnpin for ExplainSelectedAccessV1
impl UnwindSafe for ExplainSelectedAccessV1
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