Struct goblin::mach::load_command::RpathCommand[][src]

#[repr(C)]
pub struct RpathCommand { pub cmd: u32, pub cmdsize: u32, pub path: LcStr, }

The rpath_command contains a path which at runtime should be added to the current run path used to find @rpath prefixed dylibs.

Fields

LC_RPATH

includes string

path to add to run path

Trait Implementations

impl Debug for RpathCommand
[src]

Formats the value using the given formatter. Read more

impl Clone for RpathCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for RpathCommand
[src]

impl<'a> TryFromCtx<'a, Endian> for RpathCommand where
    RpathCommand: 'a, 
[src]

impl TryIntoCtx<Endian> for RpathCommand
[src]

impl FromCtx<Endian> for RpathCommand
[src]

impl IntoCtx<Endian> for RpathCommand
[src]

impl SizeWith<Endian> for RpathCommand
[src]

Auto Trait Implementations