pub type CodecResult<T> = BuckyResult<T>;
pub enum CodecResult<T> { Ok(T), Err(BuckyError), }
Contains the success value
Contains the error value