pub struct DagDbGraphSelectionTraceStep {
pub graph_style: MemoryGraphStyle,
pub candidate_count_before: u32,
pub candidate_count_after: u32,
pub selected_count_after: u32,
pub reason: String,
}Expand description
Route explanation step for graph context selection.
Fields§
§graph_style: MemoryGraphStyle§candidate_count_before: u32§candidate_count_after: u32§selected_count_after: u32§reason: StringTrait Implementations§
Source§impl Clone for DagDbGraphSelectionTraceStep
impl Clone for DagDbGraphSelectionTraceStep
Source§fn clone(&self) -> DagDbGraphSelectionTraceStep
fn clone(&self) -> DagDbGraphSelectionTraceStep
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 DagDbGraphSelectionTraceStep
impl Debug for DagDbGraphSelectionTraceStep
Source§impl<'de> Deserialize<'de> for DagDbGraphSelectionTraceStep
impl<'de> Deserialize<'de> for DagDbGraphSelectionTraceStep
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbGraphSelectionTraceStep, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbGraphSelectionTraceStep, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DagDbGraphSelectionTraceStep
Source§impl PartialEq for DagDbGraphSelectionTraceStep
impl PartialEq for DagDbGraphSelectionTraceStep
Source§fn eq(&self, other: &DagDbGraphSelectionTraceStep) -> bool
fn eq(&self, other: &DagDbGraphSelectionTraceStep) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbGraphSelectionTraceStep
impl Serialize for DagDbGraphSelectionTraceStep
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for DagDbGraphSelectionTraceStep
Auto Trait Implementations§
impl Freeze for DagDbGraphSelectionTraceStep
impl RefUnwindSafe for DagDbGraphSelectionTraceStep
impl Send for DagDbGraphSelectionTraceStep
impl Sync for DagDbGraphSelectionTraceStep
impl Unpin for DagDbGraphSelectionTraceStep
impl UnsafeUnpin for DagDbGraphSelectionTraceStep
impl UnwindSafe for DagDbGraphSelectionTraceStep
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