pub struct DirectAccessVersionInfo {
pub direct_access_supported: Option<bool>,
pub minimum_android_studio_version: Option<String>,
}Expand description
Denotes whether Direct Access is supported, and by which client versions. DirectAccessService is currently available as a preview to select developers. You can register today on behalf of you and your team at https://developer.android.com/studio/preview/android-device-streaming
This type is not used in any activity, and only used as part of another schema.
Fields§
§direct_access_supported: Option<bool>Whether direct access is supported at all. Clients are expected to filter down the device list to only android models and versions which support Direct Access when that is the user intent.
minimum_android_studio_version: Option<String>Output only. Indicates client-device compatibility, where a device is known to work only with certain workarounds implemented in the Android Studio client. Expected format “major.minor.micro.patch”, e.g. “5921.22.2211.8881706”.
Trait Implementations§
Source§impl Clone for DirectAccessVersionInfo
impl Clone for DirectAccessVersionInfo
Source§fn clone(&self) -> DirectAccessVersionInfo
fn clone(&self) -> DirectAccessVersionInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more