pub fn to_vec<T>(value: &T) -> Result<Vec<u8>> where
    T: ?Sized + Serialize
Expand description

Serialize the given data structure as a YAML byte vector.

Serialization can fail if T’s implementation of Serialize decides to return an error.