pub struct TemporalReport {
pub node: NodeId,
pub co_change_predictions: Vec<CoChangeEntry>,
pub causal_chains: Vec<CausalChain>,
pub decay: DecayScore,
pub velocity: VelocityScore,
pub impact: ImpactResult,
}Expand description
Complete temporal analysis for one node.
Fields§
§node: NodeId§co_change_predictions: Vec<CoChangeEntry>§causal_chains: Vec<CausalChain>§decay: DecayScore§velocity: VelocityScore§impact: ImpactResultTrait Implementations§
Source§impl Clone for TemporalReport
impl Clone for TemporalReport
Source§fn clone(&self) -> TemporalReport
fn clone(&self) -> TemporalReport
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 moreAuto Trait Implementations§
impl Freeze for TemporalReport
impl RefUnwindSafe for TemporalReport
impl Send for TemporalReport
impl Sync for TemporalReport
impl Unpin for TemporalReport
impl UnsafeUnpin for TemporalReport
impl UnwindSafe for TemporalReport
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