Struct goblin::mach::load_command::SourceVersionCommand
source · #[repr(C)]pub struct SourceVersionCommand {
pub cmd: u32,
pub cmdsize: u32,
pub version: u64,
}
Expand description
The source_version_command is an optional load command containing the version of the sources used to build the binary.
Fields§
§cmd: u32
LC_SOURCE_VERSION
cmdsize: u32
§version: u64
A.B.C.D.E packed as a24.b10.c10.d10.e10
Trait Implementations§
source§impl Clone for SourceVersionCommand
impl Clone for SourceVersionCommand
source§fn clone(&self) -> SourceVersionCommand
fn clone(&self) -> SourceVersionCommand
Returns a copy 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 SourceVersionCommand
impl Debug for SourceVersionCommand
source§impl FromCtx<Endian> for SourceVersionCommand
impl FromCtx<Endian> for SourceVersionCommand
source§impl<'a> IntoCtx<Endian> for &'a SourceVersionCommand
impl<'a> IntoCtx<Endian> for &'a SourceVersionCommand
source§impl IntoCtx<Endian> for SourceVersionCommand
impl IntoCtx<Endian> for SourceVersionCommand
source§impl<'a> TryFromCtx<'a, Endian> for SourceVersionCommandwhere
SourceVersionCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for SourceVersionCommandwhere SourceVersionCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a SourceVersionCommand
impl<'a> TryIntoCtx<Endian> for &'a SourceVersionCommand
source§impl TryIntoCtx<Endian> for SourceVersionCommand
impl TryIntoCtx<Endian> for SourceVersionCommand
impl Copy for SourceVersionCommand
Auto Trait Implementations§
impl RefUnwindSafe for SourceVersionCommand
impl Send for SourceVersionCommand
impl Sync for SourceVersionCommand
impl Unpin for SourceVersionCommand
impl UnwindSafe for SourceVersionCommand
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