Enum fann_sys::fann_nettype_enum [] [src]

pub enum fann_nettype_enum {
    FANN_NETTYPE_LAYER,
    FANN_NETTYPE_SHORTCUT,
}

Definition of network types used by fann_get_network_type.

Variants

FANN_NETTYPE_LAYER

Each layer only has connections to the next layer.

FANN_NETTYPE_SHORTCUT

Each layer has connections to all following layers.

Trait Implementations

impl Clone for fann_nettype_enum
[src]

fn clone(&self) -> fann_nettype_enum

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for fann_nettype_enum
[src]