Enum wafer::config::FileType [−][src]
pub enum FileType { Messagepack, Csv, Json, Yaml, Ron, }
File formats available for data output.
Variants
Messagepack
Messagepack: a binary option. Small file sizes (comparatively), but not human readable - can be converted to be however.
Csv
CSV: a plain text file with comma separated values.
Json
JSON: a popular structured text format found on the web, but also good for Wafer output.
Yaml
YAML: another structured text format that is a little more feature rich than JSON.
Ron
RON: Rusty Object Notation is a structured text format designed to encapsulate Rust syntax.
Methods
impl FileType
[src]
impl FileType
pub fn extentsion(&self) -> String
[src]
pub fn extentsion(&self) -> String
Returns the file extension of the current output type.
Trait Implementations
impl Debug for FileType
[src]
impl Debug for FileType
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for FileType
[src]
impl Display for FileType