pub struct ActivationNode {
pub record_id: Uuid,
pub activation_level: f64,
pub hop: u32,
pub edge_type: AssociationType,
}Expand description
A single node in an activation trace.
Fields§
§record_id: Uuid§activation_level: f64§hop: u32§edge_type: AssociationTypeTrait Implementations§
Source§impl Clone for ActivationNode
impl Clone for ActivationNode
Source§fn clone(&self) -> ActivationNode
fn clone(&self) -> ActivationNode
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 ActivationNode
impl Debug for ActivationNode
Source§impl<'de> Deserialize<'de> for ActivationNode
impl<'de> Deserialize<'de> for ActivationNode
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 ActivationNode
impl RefUnwindSafe for ActivationNode
impl Send for ActivationNode
impl Sync for ActivationNode
impl Unpin for ActivationNode
impl UnsafeUnpin for ActivationNode
impl UnwindSafe for ActivationNode
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