pub struct EdgeStats {
pub alpha: f64,
pub beta: f64,
pub observations: u64,
}Fields§
§alpha: f64Positive evidence (effect observed when the cause appeared).
beta: f64Negative evidence (cause observed while this effect was absent).
observations: u64Total update events applied to the edge.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EdgeStats
impl<'de> Deserialize<'de> for EdgeStats
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
impl StructuralPartialEq for EdgeStats
Auto Trait Implementations§
impl Freeze for EdgeStats
impl RefUnwindSafe for EdgeStats
impl Send for EdgeStats
impl Sync for EdgeStats
impl Unpin for EdgeStats
impl UnsafeUnpin for EdgeStats
impl UnwindSafe for EdgeStats
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