Struct mach_object::BuildVersion[][src]

pub struct BuildVersion {
    pub platform: u32,
    pub minos: VersionTag,
    pub sdk: VersionTag,
    pub build_tools: Vec<BuildTool>,
}

The build_version_command contains the min OS version on which this binary was built to run for its platform. The list of known platforms and tool values following it.

Fields

X.Y.Z is encoded in nibbles xxxx.yy.zz

X.Y.Z is encoded in nibbles xxxx.yy.zz

build tools

Methods

impl BuildVersion
[src]

Trait Implementations

impl Debug for BuildVersion
[src]

Formats the value using the given formatter. Read more

impl Clone for BuildVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BuildVersion
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations