YAML format for format-ende
This crate provides an implementation of the format-ende traits for the JSON format based on the serde_yaml crate.
Example
use FormatEncoder;
use FormatDecoder;
use YamlFormat;
use Cursor;
let mut format = new;
let mut buf: = Vecnew;
let value = vec!;
// Encode the value to YAML
format.encode.unwrap;
// Decode the value back from YAML
let decoded: = format.decode.unwrap;
assert_eq!;