Enum fann::NetType [] [src]

pub enum NetType {
    Layer,
    Shortcut,
}

Network types

Variants

Layer

Each layer of neurons only has connections to the next layer.

Shortcut

Each layer has connections to all following layers.

Trait Implementations

impl PartialEq for NetType
[src]

fn eq(&self, __arg_0: &NetType) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for NetType
[src]

impl Debug for NetType
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for NetType
[src]

fn clone(&self) -> NetType

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 NetType
[src]