pub struct ExplainSelectedAccess {
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 ExplainSelectedAccess
impl Clone for ExplainSelectedAccess
Source§fn clone(&self) -> ExplainSelectedAccess
fn clone(&self) -> ExplainSelectedAccess
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 ExplainSelectedAccess
impl Debug for ExplainSelectedAccess
impl Eq for ExplainSelectedAccess
Source§impl PartialEq for ExplainSelectedAccess
impl PartialEq for ExplainSelectedAccess
impl StructuralPartialEq for ExplainSelectedAccess
Auto Trait Implementations§
impl Freeze for ExplainSelectedAccess
impl RefUnwindSafe for ExplainSelectedAccess
impl Send for ExplainSelectedAccess
impl Sync for ExplainSelectedAccess
impl Unpin for ExplainSelectedAccess
impl UnsafeUnpin for ExplainSelectedAccess
impl UnwindSafe for ExplainSelectedAccess
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