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