pub struct KeystoneEntry {
pub node: NodeId,
pub avg_impact: FiniteF32,
pub impact_std: FiniteF32,
}Expand description
Keystone node analysis result.
Fields§
§node: NodeId§avg_impact: FiniteF32Average impact across seed trials. FM-CF-010 fix: denominator is n_runs (not per-node count).
impact_std: FiniteF32Standard deviation of impact across trials.
Trait Implementations§
Source§impl Clone for KeystoneEntry
impl Clone for KeystoneEntry
Source§fn clone(&self) -> KeystoneEntry
fn clone(&self) -> KeystoneEntry
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 KeystoneEntry
impl RefUnwindSafe for KeystoneEntry
impl Send for KeystoneEntry
impl Sync for KeystoneEntry
impl Unpin for KeystoneEntry
impl UnsafeUnpin for KeystoneEntry
impl UnwindSafe for KeystoneEntry
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