pub enum SynapseType {
Excitatory,
Inhibitory,
Modulatory,
}Expand description
Type of synapse.
Variants§
Excitatory
Excitatory synapse (e.g., glutamatergic).
Inhibitory
Inhibitory synapse (e.g., GABAergic).
Modulatory
Modulatory synapse (e.g., dopaminergic).
Trait Implementations§
Source§impl Clone for SynapseType
impl Clone for SynapseType
Source§fn clone(&self) -> SynapseType
fn clone(&self) -> SynapseType
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 SynapseType
impl Debug for SynapseType
Source§impl PartialEq for SynapseType
impl PartialEq for SynapseType
impl Copy for SynapseType
impl Eq for SynapseType
impl StructuralPartialEq for SynapseType
Auto Trait Implementations§
impl Freeze for SynapseType
impl RefUnwindSafe for SynapseType
impl Send for SynapseType
impl Sync for SynapseType
impl Unpin for SynapseType
impl UnwindSafe for SynapseType
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