Enum prophet::LogConfig [] [src]

pub enum LogConfig {
    Never,
    TimeSteps(Duration),
    Iterations(u64),
}

Logging interval for logging stats during the learning process.

Default logging configuration is to never log anything.

Variants

Never log anything.

Log in intervals based on the given duration.

Log every given number of training iterations.

Trait Implementations

impl Debug for LogConfig
[src]

[src]

Formats the value using the given formatter.

impl Copy for LogConfig
[src]

impl Clone for LogConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for LogConfig
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for LogConfig
[src]

impl Default for LogConfig
[src]

[src]

Returns the "default value" for a type. Read more