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