ToJsonValue

Trait ToJsonValue 

Source
pub trait ToJsonValue {
    // Required method
    fn to_json_value(&self) -> String;
}
Available on crate feature alloc only.

Required Methods§

Implementors§

Source§

impl<T> ToJsonValue for T
where T: WriteJsonValue + ?Sized,