pub struct LcBuildVersion {
pub platform: u32,
pub minos: u32,
pub sdk: u32,
pub tools: Vec<BuildVersionTool>,
}Expand description
Body of LC_BUILD_VERSION. Records the platform / minimum OS
/ SDK / per-tool versions. ntools is recovered from
tools.len() at encode time.
Fields§
§platform: u32§minos: u32§sdk: u32§tools: Vec<BuildVersionTool>Implementations§
Trait Implementations§
Source§impl Clone for LcBuildVersion
impl Clone for LcBuildVersion
Source§fn clone(&self) -> LcBuildVersion
fn clone(&self) -> LcBuildVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LcBuildVersion
impl Debug for LcBuildVersion
Source§impl PartialEq for LcBuildVersion
impl PartialEq for LcBuildVersion
Source§fn eq(&self, other: &LcBuildVersion) -> bool
fn eq(&self, other: &LcBuildVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LcBuildVersion
impl StructuralPartialEq for LcBuildVersion
Auto Trait Implementations§
impl Freeze for LcBuildVersion
impl RefUnwindSafe for LcBuildVersion
impl Send for LcBuildVersion
impl Sync for LcBuildVersion
impl Unpin for LcBuildVersion
impl UnsafeUnpin for LcBuildVersion
impl UnwindSafe for LcBuildVersion
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