[][src]Struct slow_nn::Neuron

pub struct Neuron {
    pub in_comes: Vec<usize>,
    pub weights: Vec<f64>,
}

Neuron struct for Neural Network

Fields

in_comes: Vec<usize>

Indeces of incoming Neurons

weights: Vec<f64>

Weights of Connections from respective incoming Neuron

Methods

impl Neuron[src]

pub fn new() -> Self[src]

Creates a new Neuron with no connections

pub fn connected_from(&mut self, from: usize, weight: f64)[src]

Adds a connection to the Neuron

pub fn connections(&self) -> usize[src]

Returns the number of connections from the Neuron

Trait Implementations

impl<'de> Deserialize<'de> for Neuron[src]

impl Serialize for Neuron[src]

Auto Trait Implementations

impl RefUnwindSafe for Neuron

impl Send for Neuron

impl Sync for Neuron

impl Unpin for Neuron

impl UnwindSafe for Neuron

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,