pub type Result<T> = Result<T, BleError>;
The crate result alias.
pub enum Result<T> { Ok(T), Err(BleError), }
Contains the success value
Contains the error value