pub struct TopologyThreshold {
pub mincut_range: (f64, f64),
pub modularity_range: (f64, f64),
pub efficiency_range: (f64, f64),
pub entropy_range: (f64, f64),
}Expand description
Threshold ranges for topology metrics associated with a cognitive state.
Fields§
§mincut_range: (f64, f64)Expected range for global minimum cut value.
modularity_range: (f64, f64)Expected range for modularity.
efficiency_range: (f64, f64)Expected range for global efficiency.
entropy_range: (f64, f64)Expected range for graph entropy.
Trait Implementations§
Source§impl Clone for TopologyThreshold
impl Clone for TopologyThreshold
Source§fn clone(&self) -> TopologyThreshold
fn clone(&self) -> TopologyThreshold
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 TopologyThreshold
impl Debug for TopologyThreshold
Source§impl<'de> Deserialize<'de> for TopologyThreshold
impl<'de> Deserialize<'de> for TopologyThreshold
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 TopologyThreshold
impl RefUnwindSafe for TopologyThreshold
impl Send for TopologyThreshold
impl Sync for TopologyThreshold
impl Unpin for TopologyThreshold
impl UnsafeUnpin for TopologyThreshold
impl UnwindSafe for TopologyThreshold
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