pub struct CouplingConfig {
pub max_initial_strength: f64,
pub max_strengthening_rate: f64,
pub enable_auto_adjustment: bool,
pub min_meaning_convergence: f64,
}Expand description
Configuration for coupling behavior
Fields§
§max_initial_strength: f64Maximum initial strength
max_strengthening_rate: f64Maximum strengthening per interaction
enable_auto_adjustment: boolEnable automatic coupling adjustment?
min_meaning_convergence: f64Minimum meaning convergence to maintain coupling
Trait Implementations§
Source§impl Clone for CouplingConfig
impl Clone for CouplingConfig
Source§fn clone(&self) -> CouplingConfig
fn clone(&self) -> CouplingConfig
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 CouplingConfig
impl Debug for CouplingConfig
Source§impl Default for CouplingConfig
impl Default for CouplingConfig
Source§impl<'de> Deserialize<'de> for CouplingConfig
impl<'de> Deserialize<'de> for CouplingConfig
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 CouplingConfig
impl RefUnwindSafe for CouplingConfig
impl Send for CouplingConfig
impl Sync for CouplingConfig
impl Unpin for CouplingConfig
impl UnwindSafe for CouplingConfig
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