pub struct MemoryNeuronDetailResponse {Show 17 fields
pub neuron_id: u64,
pub cortical_idx: u32,
pub cortical_id: String,
pub cortical_name: String,
pub pattern_hash: Option<u64>,
pub is_longterm_memory: bool,
pub is_active: bool,
pub lifespan_current: u32,
pub lifespan_initial: u32,
pub lifespan_growth_rate: f32,
pub creation_burst: u64,
pub last_activation_burst: u64,
pub activation_count: u32,
pub outgoing_synapse_count: usize,
pub incoming_synapse_count: usize,
pub outgoing_synapses: Value,
pub incoming_synapses: Value,
}Expand description
Full memory neuron detail: plasticity lifecycle fields plus connectome synapses.
Fields§
§neuron_id: u64§cortical_idx: u32§cortical_id: String§cortical_name: String§pattern_hash: Option<u64>§is_longterm_memory: bool§is_active: bool§lifespan_current: u32§lifespan_initial: u32§lifespan_growth_rate: f32§creation_burst: u64§last_activation_burst: u64§activation_count: u32§outgoing_synapse_count: usize§incoming_synapse_count: usize§outgoing_synapses: Value§incoming_synapses: ValueTrait Implementations§
Source§impl Clone for MemoryNeuronDetailResponse
impl Clone for MemoryNeuronDetailResponse
Source§fn clone(&self) -> MemoryNeuronDetailResponse
fn clone(&self) -> MemoryNeuronDetailResponse
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 MemoryNeuronDetailResponse
impl Debug for MemoryNeuronDetailResponse
Auto Trait Implementations§
impl Freeze for MemoryNeuronDetailResponse
impl RefUnwindSafe for MemoryNeuronDetailResponse
impl Send for MemoryNeuronDetailResponse
impl Sync for MemoryNeuronDetailResponse
impl Unpin for MemoryNeuronDetailResponse
impl UnsafeUnpin for MemoryNeuronDetailResponse
impl UnwindSafe for MemoryNeuronDetailResponse
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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