Struct neural_network::back_prop::Neuron [] [src]

pub struct Neuron {
    pub bias: f64,
    pub prev_delta: f64,
    pub output: f64,
    pub sum: f64,
    pub connections: Vec<Connection>,
}

Fields

Trait Implementations

impl Clone for Neuron
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Neuron
[src]

[src]

Formats the value using the given formatter.

impl CustomIO for Neuron
[src]

[src]

[src]

impl PartialEq for Neuron
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl N for Neuron
[src]

[src]

[src]

[src]

[src]

[src]