Enum wafer::config::FileType[][src]

pub enum FileType {
    Messagepack,
    Csv,
    Json,
    Yaml,
    Ron,
}

File formats available for data output.

Variants

Messagepack: a binary option. Small file sizes (comparatively), but not human readable - can be converted to be however.

CSV: a plain text file with comma separated values.

JSON: a popular structured text format found on the web, but also good for Wafer output.

YAML: another structured text format that is a little more feature rich than JSON.

RON: Rusty Object Notation is a structured text format designed to encapsulate Rust syntax.

Methods

impl FileType
[src]

Returns the file extension of the current output type.

Trait Implementations

impl Debug for FileType
[src]

Formats the value using the given formatter. Read more

impl Display for FileType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FileType

impl Sync for FileType