junobuild-utils 0.4.0

A collection of utilities for developers on Juno.
Documentation
1
2
3
4
5
6
7
pub trait IntoJsonData {
    fn into_json_data(self) -> Result<Vec<u8>, String>;
}

pub trait FromJsonData: Sized {
    fn from_json_data(bytes: &[u8]) -> Result<Self, String>;
}