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