pub struct GapJunction {
pub neuron1: usize,
pub neuron2: usize,
pub conductance: f64,
pub rectifying: bool,
}Expand description
Gap junction (electrical synapse).
Provides bidirectional, instantaneous electrical coupling between neurons.
Fields§
§neuron1: usizeFirst neuron ID.
neuron2: usizeSecond neuron ID.
conductance: f64Coupling conductance (nS).
rectifying: boolWhether the junction is rectifying (one-way).
Implementations§
Trait Implementations§
Source§impl Clone for GapJunction
impl Clone for GapJunction
Source§fn clone(&self) -> GapJunction
fn clone(&self) -> GapJunction
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 GapJunction
impl RefUnwindSafe for GapJunction
impl Send for GapJunction
impl Sync for GapJunction
impl Unpin for GapJunction
impl UnwindSafe for GapJunction
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