Enum yaml2json_rs::Style[][src]

pub enum Style {
    COMPACT,
    PRETTY,
}
Expand description

Style defines JSON output formats for Yaml2Json.

Variants

COMPACT

Style::COMPACT outputs JSON on a single line. e.g. for the following YAML:

---
hello: world
spec:
  items:
    - a
    - b

the JSON output will be:

{"hello":"world","spec":{"items":["a","b"]}}
PRETTY

Style::PRETTY outputs JSON on multiple lines, with automatic indentation. e.g. for the following YAML:

---
hello: world
spec:
  items:
    - a
    - b

the JSON output will be:

{
  "hello": "world",
  "spec": {
    "items": [
      "a",
      "b"
    ]
  }
}

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.