pub type Result<T> = Result<T, BleError>;
SRS-002: Standard Result type alias for the library.
pub enum Result<T> { Ok(T), Err(BleError), }
Contains the success value
Contains the error value