Enum serde_any::Format[][src]

pub enum Format {
    Toml,
    Json,
    Yaml,
    Ron,
}

Serialization or deserialization formats

Variants

TOML (Tom's Obvious, Minimal Language), enabled by the toml feature.

JSON (JavaScript Object Notation), enabled by the json feature.

YAML (YAML Ain't Markup Language), enabled by the yaml feature.

RON (Rusty Object Notation), enabled by the ron feature.

Methods

impl Format
[src]

Checks whether this format is supported

Support for different formats is controlled by the features used when building serde_any.

Trait Implementations

impl Clone for Format
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Format
[src]

impl Debug for Format
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Format
[src]

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

This method tests for !=.

impl Eq for Format
[src]

impl Display for Format
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Format

impl Sync for Format