pub struct VelocityScore {
pub node: NodeId,
pub velocity: FiniteF32,
pub trend: VelocityTrend,
}Expand description
Velocity score for a single node. Replaces: temporal_v2.py VelocityScorer.score() per-node output
Fields§
§node: NodeId§velocity: FiniteF32§trend: VelocityTrendTrait Implementations§
Source§impl Clone for VelocityScore
impl Clone for VelocityScore
Source§fn clone(&self) -> VelocityScore
fn clone(&self) -> VelocityScore
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 moreSource§impl Debug for VelocityScore
impl Debug for VelocityScore
impl Copy for VelocityScore
Auto Trait Implementations§
impl Freeze for VelocityScore
impl RefUnwindSafe for VelocityScore
impl Send for VelocityScore
impl Sync for VelocityScore
impl Unpin for VelocityScore
impl UnsafeUnpin for VelocityScore
impl UnwindSafe for VelocityScore
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