pub enum VnedStructure {
Root,
Undefined,
Soma,
Axon,
BasalDendrite,
ApicalDendrite,
SomaRelated,
Custom(isize),
}
Variants§
Trait Implementations§
Source§impl Clone for VnedStructure
impl Clone for VnedStructure
Source§fn clone(&self) -> VnedStructure
fn clone(&self) -> VnedStructure
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 VnedStructure
impl Debug for VnedStructure
Source§impl From<VnedStructure> for isize
impl From<VnedStructure> for isize
Source§fn from(val: VnedStructure) -> Self
fn from(val: VnedStructure) -> Self
Converts to this type from the input type.
Source§impl From<isize> for VnedStructure
impl From<isize> for VnedStructure
Source§impl StructureIdentifier for VnedStructure
impl StructureIdentifier for VnedStructure
impl Copy for VnedStructure
Auto Trait Implementations§
impl Freeze for VnedStructure
impl RefUnwindSafe for VnedStructure
impl Send for VnedStructure
impl Sync for VnedStructure
impl Unpin for VnedStructure
impl UnwindSafe for VnedStructure
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