Retrieving a non-device specific property from core results in a "general error". E.g., the following unit test fails:
#[test]
fn test_get_supported_properties() {
let core = Core::new().unwrap();
let supported_properties = core.get_property(PropertyKey::SupportedProperties);
assert!(supported_properties.is_ok());
}
Retrieving device-specific properties appear to be working (e.g., for CPU).