pub type CyberResult = Result<CyberMsg, CyberError>;
pub enum CyberResult { Ok(CyberMsg), Err(CyberError), }
Contains the success value
Contains the error value