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

Required Methods§

Implementors§

source§

impl<T> RawConvertTo<T> for Twhere T: RawEncode,