pub struct AxSelectorExplain {
pub strategy: AxMatchStrategy,
pub total_candidates: usize,
pub matched_count: usize,
pub selected_count: usize,
pub stage_results: Vec<AxSelectorExplainStage>,
pub selected_node_id: Option<String>,
}Fields§
§strategy: AxMatchStrategy§total_candidates: usize§matched_count: usize§selected_count: usize§stage_results: Vec<AxSelectorExplainStage>§selected_node_id: Option<String>Trait Implementations§
Source§impl Clone for AxSelectorExplain
impl Clone for AxSelectorExplain
Source§fn clone(&self) -> AxSelectorExplain
fn clone(&self) -> AxSelectorExplain
Returns a duplicate of the value. Read more
1.0.0 · 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 AxSelectorExplain
impl Debug for AxSelectorExplain
Source§impl<'de> Deserialize<'de> for AxSelectorExplain
impl<'de> Deserialize<'de> for AxSelectorExplain
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AxSelectorExplain
impl PartialEq for AxSelectorExplain
Source§impl Serialize for AxSelectorExplain
impl Serialize for AxSelectorExplain
impl Eq for AxSelectorExplain
impl StructuralPartialEq for AxSelectorExplain
Auto Trait Implementations§
impl Freeze for AxSelectorExplain
impl RefUnwindSafe for AxSelectorExplain
impl Send for AxSelectorExplain
impl Sync for AxSelectorExplain
impl Unpin for AxSelectorExplain
impl UnsafeUnpin for AxSelectorExplain
impl UnwindSafe for AxSelectorExplain
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