Struct goblin::mach::load_command::RpathCommand
source · #[repr(C)]pub struct RpathCommand {
pub cmd: u32,
pub cmdsize: u32,
pub path: LcStr,
}
Expand description
The rpath_command contains a path which at runtime should be added to the current run path used to find @rpath prefixed dylibs.
Fields§
§cmd: u32
LC_RPATH
cmdsize: u32
includes string
path: LcStr
path to add to run path
Trait Implementations§
source§impl Clone for RpathCommand
impl Clone for RpathCommand
source§fn clone(&self) -> RpathCommand
fn clone(&self) -> RpathCommand
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 RpathCommand
impl Debug for RpathCommand
source§impl<'a> IntoCtx<Endian> for &'a RpathCommand
impl<'a> IntoCtx<Endian> for &'a RpathCommand
source§impl<'a> TryFromCtx<'a, Endian> for RpathCommandwhere
RpathCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for RpathCommandwhere RpathCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a RpathCommand
impl<'a> TryIntoCtx<Endian> for &'a RpathCommand
source§impl TryIntoCtx<Endian> for RpathCommand
impl TryIntoCtx<Endian> for RpathCommand
impl Copy for RpathCommand
Auto Trait Implementations§
impl RefUnwindSafe for RpathCommand
impl Send for RpathCommand
impl Sync for RpathCommand
impl Unpin for RpathCommand
impl UnwindSafe for RpathCommand
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