pub struct ManualLinkResolution {
pub edges: Vec<Edge>,
pub evidence: Vec<Evidence>,
pub decisions: Vec<LinkDecision>,
}Expand description
Graph facts and audit records produced after applying manual declarations.
Fields§
§edges: Vec<Edge>Automatic edges after exact suppressions and manual replacements.
evidence: Vec<Evidence>Manual evidence emitted for created edges and successful suppressions.
decisions: Vec<LinkDecision>Versioned decisions in deterministic relationship order.
Trait Implementations§
Source§impl Clone for ManualLinkResolution
impl Clone for ManualLinkResolution
Source§fn clone(&self) -> ManualLinkResolution
fn clone(&self) -> ManualLinkResolution
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 ManualLinkResolution
impl Debug for ManualLinkResolution
Source§impl PartialEq for ManualLinkResolution
impl PartialEq for ManualLinkResolution
impl StructuralPartialEq for ManualLinkResolution
Auto Trait Implementations§
impl Freeze for ManualLinkResolution
impl RefUnwindSafe for ManualLinkResolution
impl Send for ManualLinkResolution
impl Sync for ManualLinkResolution
impl Unpin for ManualLinkResolution
impl UnsafeUnpin for ManualLinkResolution
impl UnwindSafe for ManualLinkResolution
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