pub trait RawConvertTo<O> {
    fn to_vec(&self) -> BuckyResult<Vec<u8>>;
    fn to_hex(&self) -> BuckyResult<String>;
}

Required Methods

Implementors