pub trait ToStringPretty {
    // Required method
    fn to_string_pretty(&self) -> Result<String, FrError>;
}

Required Methods§

Implementors§

source§

impl<T> ToStringPretty for T
where T: Serialize + ?Sized,