pub type DeviceGetGainResult = Result<(bool, bool, f32), Error>;
enum DeviceGetGainResult { Ok((bool, bool, f32)), Err(Error), }
Contains the success value
Contains the error value