pub struct MemoryCorticalAreaResponse {Show 16 fields
pub cortical_id: String,
pub cortical_idx: u32,
pub cortical_name: String,
pub short_term_neuron_count: usize,
pub long_term_neuron_count: usize,
pub memory_parameters: MemoryCorticalAreaParamsResponse,
pub upstream_cortical_area_indices: Vec<u32>,
pub upstream_cortical_area_count: usize,
pub upstream_pattern_cache_size: usize,
pub incoming_synapse_count: usize,
pub outgoing_synapse_count: usize,
pub total_memory_neuron_ids: usize,
pub page: u32,
pub page_size: u32,
pub memory_neuron_ids: Vec<u64>,
pub has_more: bool,
}Expand description
Response for get_memory_cortical_area.
Fields§
§cortical_id: String§cortical_idx: u32§cortical_name: String§short_term_neuron_count: usize§long_term_neuron_count: usize§memory_parameters: MemoryCorticalAreaParamsResponse§upstream_cortical_area_indices: Vec<u32>Upstream cortical indices that feed pattern detection for this memory area.
upstream_cortical_area_count: usize§upstream_pattern_cache_size: usizeDistinct temporal patterns cached in the pattern detector for this area.
incoming_synapse_count: usize§outgoing_synapse_count: usize§total_memory_neuron_ids: usize§page: u32§page_size: u32§memory_neuron_ids: Vec<u64>§has_more: boolTrait Implementations§
Source§impl Clone for MemoryCorticalAreaResponse
impl Clone for MemoryCorticalAreaResponse
Source§fn clone(&self) -> MemoryCorticalAreaResponse
fn clone(&self) -> MemoryCorticalAreaResponse
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 MemoryCorticalAreaResponse
impl Debug for MemoryCorticalAreaResponse
Auto Trait Implementations§
impl Freeze for MemoryCorticalAreaResponse
impl RefUnwindSafe for MemoryCorticalAreaResponse
impl Send for MemoryCorticalAreaResponse
impl Sync for MemoryCorticalAreaResponse
impl Unpin for MemoryCorticalAreaResponse
impl UnsafeUnpin for MemoryCorticalAreaResponse
impl UnwindSafe for MemoryCorticalAreaResponse
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