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