Crate merde_yaml

Crate merde_yaml 

Source
Expand description

license: MIT/Apache-2.0 crates.io docs.rs

§merde_yaml

The merde logo: a glorious poop floating above a pair of hands

Logo by MisiasArt

Adds YAML serialization/deserialization support for merde.

You would normally add a dependency on merde directly, enabling its yaml feature.

Structs§

YamlDeserializer
A YAML deserializer, that implements merde_core::Deserializer.

Functions§

from_str
Deserialize an instance of type T from a string of YAML text.
from_str_owned
Deserialize an instance of type T from a string of YAML text, and return its static variant e.g. (CowStr<’static>, etc.)