pub struct BuildVersion {
pub platform: u32,
pub minos: VersionTag,
pub sdk: VersionTag,
pub build_tools: Vec<BuildTool>,
}
Expand description
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: u32
§minos: 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
Implementations§
Trait Implementations§
Source§impl Clone for BuildVersion
impl Clone for BuildVersion
Source§fn clone(&self) -> BuildVersion
fn clone(&self) -> BuildVersion
Returns a duplicate 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 BuildVersion
impl Debug for BuildVersion
Source§impl PartialEq for BuildVersion
impl PartialEq for BuildVersion
impl StructuralPartialEq for BuildVersion
Auto Trait Implementations§
impl Freeze for BuildVersion
impl RefUnwindSafe for BuildVersion
impl Send for BuildVersion
impl Sync for BuildVersion
impl Unpin for BuildVersion
impl UnwindSafe for BuildVersion
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