pub trait IntoJson {
    type Output: BnStrCompatible;

    // Required method
    fn get_json_string(self) -> Result<Self::Output, ()>;
}

Required Associated Types§

Required Methods§

Implementors§