[][src]Struct mach_object::BuildVersion

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

platform: u32minos: VersionTag

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

sdk: VersionTag

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

build_tools: Vec<BuildTool>

build tools

Methods

impl BuildVersion[src]

pub fn platform(&self) -> Platform[src]

Trait Implementations

impl Clone for BuildVersion[src]

impl PartialEq<BuildVersion> for BuildVersion[src]

impl Debug for BuildVersion[src]

impl StructuralPartialEq for BuildVersion[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]