Enum flexi_config::Target [] [src]

pub enum Target {
    StdErr,
    Disk,
}

Enumeration used to identify where the log messages should be written to (stderr or disk).

Variants

Write the log messages to standard error.

Write the log messages to disk.

Methods

impl Target
[src]

Decodes a string value into the enumeration value. This is used in conjuction with encode().

Converts the enumeration value into a string so it can be saved. Used in conjunction with decode().

Trait Implementations

impl Debug for Target
[src]

Formats the value using the given formatter.

impl Clone for Target
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Target
[src]

impl PartialEq for Target
[src]

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

This method tests for !=.