pub struct BuildVersionCommand {
pub cmd: u32,
pub cmdsize: u32,
pub platform: Platform,
pub minos: Version,
pub sdk: Version,
pub ntools: u32,
}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§
§cmd: u32§cmdsize: u32BuildVersion::SIZE + ntools * BuildToolVersion::SIZE
platform: Platform§minos: VersionX.Y.Z is encoded in nibbles xxxx.yy.zz
sdk: VersionX.Y.Z is encoded in nibbles xxxx.yy.zz
ntools: u32Implementations§
Trait Implementations§
Source§impl Clone for BuildVersionCommand
impl Clone for BuildVersionCommand
Source§fn clone(&self) -> BuildVersionCommand
fn clone(&self) -> BuildVersionCommand
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 BuildVersionCommand
impl Debug for BuildVersionCommand
Source§impl PartialEq for BuildVersionCommand
impl PartialEq for BuildVersionCommand
impl Eq for BuildVersionCommand
impl StructuralPartialEq for BuildVersionCommand
Auto Trait Implementations§
impl Freeze for BuildVersionCommand
impl RefUnwindSafe for BuildVersionCommand
impl Send for BuildVersionCommand
impl Sync for BuildVersionCommand
impl Unpin for BuildVersionCommand
impl UnwindSafe for BuildVersionCommand
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