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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.