pub struct ActivatedNode {
pub node: NodeId,
pub activation: FiniteF32,
pub dimensions: [FiniteF32; 4],
pub active_dimension_count: u8,
}Expand description
Per-node activation detail in a query result.
Fields§
§node: NodeId§activation: FiniteF32Combined activation score after dimension weighting + resonance bonus.
dimensions: [FiniteF32; 4]Per-dimension scores [structural, semantic, temporal, causal].
active_dimension_count: u8Number of dimensions that contributed above threshold.
Trait Implementations§
Source§impl Clone for ActivatedNode
impl Clone for ActivatedNode
Source§fn clone(&self) -> ActivatedNode
fn clone(&self) -> ActivatedNode
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 ActivatedNode
impl RefUnwindSafe for ActivatedNode
impl Send for ActivatedNode
impl Sync for ActivatedNode
impl Unpin for ActivatedNode
impl UnsafeUnpin for ActivatedNode
impl UnwindSafe for ActivatedNode
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