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