pub trait ToYAML: Type {
    // Required method
    fn to_yaml(&self) -> Option<Value>;

    // Provided method
    fn to_yaml_string(&self) -> String { ... }
}
Expand description

Represents a type that can converted to YAML value.

Required Methods§

source

fn to_yaml(&self) -> Option<Value>

Convert this value to Value.

Provided Methods§

source

fn to_yaml_string(&self) -> String

Convert this value to YAML string.

Implementations on Foreign Types§

source§

impl<T: ToYAML> ToYAML for Box<T>

source§

impl<T: ToYAML> ToYAML for &T

Implementors§