Type Definition cerebral::responsive::BoxedResponsive

source ·
pub type BoxedResponsive<N> = Box<dyn Responsive<N> + Send>;

Trait Implementations§

source§

impl<N> Clone for BoxedResponsive<N>where N: Neural,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<N> Responsive<N> for BoxedResponsive<N>where N: Neural,

source§

fn get_best_matching(&self, neurons: &N, pattern: &ArrayView1<'_, f64>) -> usize

source§

fn clone_dyn(&self) -> BoxedResponsive<N>