Struct google_androidmanagement1::SoftwareInfo
source · pub struct SoftwareInfo {
pub android_build_time: Option<String>,
pub security_patch_level: Option<String>,
pub android_build_number: Option<String>,
pub device_kernel_version: Option<String>,
pub android_version: Option<String>,
pub bootloader_version: Option<String>,
}Expand description
Information about device software.
This type is not used in any activity, and only used as part of another schema.
Fields§
§android_build_time: Option<String>Build time.
security_patch_level: Option<String>Security patch level, e.g. 2016-05-01.
android_build_number: Option<String>Android build Id string meant for displaying to the user, e.g. shamu-userdebug 6.0.1 MOB30I 2756745 dev-keys.
device_kernel_version: Option<String>Kernel version, e.g. 2.6.32.9-g103d848.
android_version: Option<String>The user visible Android version string, e.g. 6.0.1.
bootloader_version: Option<String>The system bootloader version number, e.g. 0.6.7.
Trait Implementations§
source§impl Clone for SoftwareInfo
impl Clone for SoftwareInfo
source§fn clone(&self) -> SoftwareInfo
fn clone(&self) -> SoftwareInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SoftwareInfo
impl Debug for SoftwareInfo
source§impl Default for SoftwareInfo
impl Default for SoftwareInfo
source§fn default() -> SoftwareInfo
fn default() -> SoftwareInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SoftwareInfo
impl<'de> Deserialize<'de> for SoftwareInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for SoftwareInfo
impl Serialize for SoftwareInfo
impl Part for SoftwareInfo
Auto Trait Implementations§
impl Freeze for SoftwareInfo
impl RefUnwindSafe for SoftwareInfo
impl Send for SoftwareInfo
impl Sync for SoftwareInfo
impl Unpin for SoftwareInfo
impl UnwindSafe for SoftwareInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more