pub struct ConsciousnessNetwork {
pub network_size: usize,
pub node_entanglements: Vec<NodeEntanglement>,
pub network_coherence: f64,
pub time_s: f64,
}Expand description
Aggregate state of a small consciousness network at a given time.
Fields§
§network_size: usize§node_entanglements: Vec<NodeEntanglement>§network_coherence: f64§time_s: f64Trait Implementations§
Source§impl Clone for ConsciousnessNetwork
impl Clone for ConsciousnessNetwork
Source§fn clone(&self) -> ConsciousnessNetwork
fn clone(&self) -> ConsciousnessNetwork
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 moreAuto Trait Implementations§
impl Freeze for ConsciousnessNetwork
impl RefUnwindSafe for ConsciousnessNetwork
impl Send for ConsciousnessNetwork
impl Sync for ConsciousnessNetwork
impl Unpin for ConsciousnessNetwork
impl UnsafeUnpin for ConsciousnessNetwork
impl UnwindSafe for ConsciousnessNetwork
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