pub struct ImpactEntry {
pub entity_id: String,
pub name: String,
pub confidence: f64,
pub tier: String,
pub depth: usize,
pub path: Vec<String>,
pub reason: String,
pub explanation_chain: ExplanationChain,
}Fields§
§entity_id: String§name: String§confidence: f64§tier: String§depth: usize§path: Vec<String>§reason: String§explanation_chain: ExplanationChainTrait Implementations§
Source§impl Clone for ImpactEntry
impl Clone for ImpactEntry
Source§fn clone(&self) -> ImpactEntry
fn clone(&self) -> ImpactEntry
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 ImpactEntry
impl Debug for ImpactEntry
Source§impl<'de> Deserialize<'de> for ImpactEntry
impl<'de> Deserialize<'de> for ImpactEntry
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
Auto Trait Implementations§
impl Freeze for ImpactEntry
impl RefUnwindSafe for ImpactEntry
impl Send for ImpactEntry
impl Sync for ImpactEntry
impl Unpin for ImpactEntry
impl UnsafeUnpin for ImpactEntry
impl UnwindSafe for ImpactEntry
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