pub type Result<T> = Result<T, OdinError>;
Result type alias for ODIN Protocol operations
pub enum Result<T> { Ok(T), Err(OdinError), }
Contains the success value
Contains the error value