pub trait ToJson {
    fn to_json(&self) -> Value;
}
Expand description

A trait for converting values to Hjson

Required Methods

Converts the value of self to an instance of Hjson

Implementors