pub struct IhNeuron {}Expand description
Ih (hyperpolarisation-activated cation current) neuron — WB base + HCN.
Ih activates upon hyperpolarisation (opposite to most voltage-gated channels) and conducts a mixed Na+/K+ current with reversal ~-40 mV. Key mechanism for:
- Voltage sag: during hyperpolarisation, Ih activates and depolarises the cell back towards rest (sag potential)
- Rebound excitation: Ih accumulated during inhibition depolarises the cell after inhibition ends, triggering rebound spikes
- Pacemaker oscillations: interplay of Ih and T-type Ca2+ in thalamic relay neurons drives rhythmic bursting
Robinson & Bhatt, Neuron 11:953, 1993; Pape, Annu Rev Physiol 58:299, 1996.
Fields§
§v: f64§h: f64§n: f64§r: f64§g_na: f64§g_k: f64§g_h: f64§g_l: f64§e_na: f64§e_k: f64§e_h: f64§e_l: f64§c_m: f64§phi: f64§dt: f64§v_threshold: f64§gain: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IhNeuron
impl RefUnwindSafe for IhNeuron
impl Send for IhNeuron
impl Sync for IhNeuron
impl Unpin for IhNeuron
impl UnsafeUnpin for IhNeuron
impl UnwindSafe for IhNeuron
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more