pub struct EphapticCoupling {
pub source_neuron: usize,
pub target_neuron: usize,
pub strength: f64,
pub distance: f64,
pub tau: f64,
}Expand description
Ephaptic coupling - electric field effects between nearby neurons.
Models extracellular potential effects on neighboring neurons.
Fields§
§source_neuron: usizeSource neuron ID.
target_neuron: usizeTarget neuron ID.
strength: f64Coupling strength (mV/Hz).
distance: f64Distance between neurons (μm).
tau: f64Time constant for field effects (ms).
Implementations§
Trait Implementations§
Source§impl Clone for EphapticCoupling
impl Clone for EphapticCoupling
Source§fn clone(&self) -> EphapticCoupling
fn clone(&self) -> EphapticCoupling
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 EphapticCoupling
impl RefUnwindSafe for EphapticCoupling
impl Send for EphapticCoupling
impl Sync for EphapticCoupling
impl Unpin for EphapticCoupling
impl UnwindSafe for EphapticCoupling
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