Struct fann_sys::fann_connection [] [src]

#[repr(C)]
pub struct fann_connection { pub from_neuron: c_uint, pub to_neuron: c_uint, pub weight: fann_type, }

Describes a connection between two neurons and its weight.

See Also

fann_get_connection_array, fann_set_weight_array

This structure appears in FANN >= 2.1.0.

Fields

Unique number used to identify source neuron

Unique number used to identify destination neuron

The numerical value of the weight

Trait Implementations

impl Copy for fann_connection
[src]

impl Clone for fann_connection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for fann_connection
[src]

Formats the value using the given formatter.

impl PartialEq for fann_connection
[src]

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

This method tests for !=.