Enum fann::FannErrorType[][src]

pub enum FannErrorType {
    CantOpenConfigR,
    CantOpenConfigW,
    WrongConfigVersion,
    CantReadConfig,
    CantReadNeuron,
    CantReadConnections,
    WrongNumConnections,
    CantOpenTdW,
    CantOpenTdR,
    CantReadTd,
    CantAllocateMem,
    CantTrainActivation,
    CantUseActivation,
    TrainDataMismatch,
    CantUseTrainAlg,
    TrainDataSubset,
    IndexOutOfBound,
    ScaleNotPresent,
    CantSaveFile,
    ErrorCodeReturned,
}

Variants

Unable to open configuration file for reading

Unable to open configuration file for writing

Wrong version of configuration file

Error reading info from configuration file

Error reading neuron info from configuration file

Error reading connections from configuration file

Number of connections not equal to the number expected

Unable to open train data file for writing

Unable to open train data file for reading

Error reading training data from file

Unable to allocate memory

Unable to train with the selected activation function

Unable to use the selected activation function

Irreconcilable differences between two fann_train_data structures

Unable to use the selected training algorithm

Trying to take subset which is not within the training set

Index is out of bound

Scaling parameters not present

Failed to save file

C function returned an error code, i. e. not 0, but did not specify error

Trait Implementations

impl Copy for FannErrorType
[src]

impl Clone for FannErrorType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FannErrorType
[src]

Formats the value using the given formatter. Read more

impl Eq for FannErrorType
[src]

impl PartialEq for FannErrorType
[src]

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

This method tests for !=.

impl Display for FannErrorType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations