pub struct CeaEdgeRow {
pub edge_id: String,
pub cause_node_id: String,
pub effect_node_id: String,
pub weight: f64,
pub alpha: f64,
pub beta: f64,
pub count: i64,
pub confidence: f64,
pub version_id: String,
pub last_seen: String,
}Fields§
§edge_id: String§cause_node_id: String§effect_node_id: String§weight: f64§alpha: f64Mirrors cea_core::EdgeStats::alpha for persisted edges.
beta: f64Mirrors cea_core::EdgeStats::beta for persisted edges.
count: i64Mirrors cea_core::EdgeStats::observations.
confidence: f64§version_id: String§last_seen: StringTrait Implementations§
Source§impl Clone for CeaEdgeRow
impl Clone for CeaEdgeRow
Source§fn clone(&self) -> CeaEdgeRow
fn clone(&self) -> CeaEdgeRow
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 CeaEdgeRow
impl Debug for CeaEdgeRow
Source§impl PartialEq for CeaEdgeRow
impl PartialEq for CeaEdgeRow
Source§fn eq(&self, other: &CeaEdgeRow) -> bool
fn eq(&self, other: &CeaEdgeRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CeaEdgeRow
Auto Trait Implementations§
impl Freeze for CeaEdgeRow
impl RefUnwindSafe for CeaEdgeRow
impl Send for CeaEdgeRow
impl Sync for CeaEdgeRow
impl Unpin for CeaEdgeRow
impl UnsafeUnpin for CeaEdgeRow
impl UnwindSafe for CeaEdgeRow
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