pub struct IntegrationPoint {
pub id: String,
pub name: String,
pub description: String,
pub consciousness_anchor: ConsciousnessAnchor,
pub computation_interface: ComputationInterface,
pub integration_strength: f64,
pub bidirectional: bool,
pub latency_ms: f64,
}Expand description
Points where consciousness and computation integrate
Fields§
§id: String§name: String§description: String§consciousness_anchor: ConsciousnessAnchor§computation_interface: ComputationInterface§integration_strength: f64§bidirectional: bool§latency_ms: f64Trait Implementations§
Source§impl Clone for IntegrationPoint
impl Clone for IntegrationPoint
Source§fn clone(&self) -> IntegrationPoint
fn clone(&self) -> IntegrationPoint
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 IntegrationPoint
impl Debug for IntegrationPoint
Source§impl<'de> Deserialize<'de> for IntegrationPoint
impl<'de> Deserialize<'de> for IntegrationPoint
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 IntegrationPoint
impl RefUnwindSafe for IntegrationPoint
impl Send for IntegrationPoint
impl Sync for IntegrationPoint
impl Unpin for IntegrationPoint
impl UnsafeUnpin for IntegrationPoint
impl UnwindSafe for IntegrationPoint
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