Struct goblin::mach::load_command::SubClientCommand
source · #[repr(C)]pub struct SubClientCommand {
pub cmd: u32,
pub cmdsize: u32,
pub client: LcStr,
}
Expand description
For dynamically linked shared libraries that are subframework of an umbrella framework they can allow clients other than the umbrella framework or other subframeworks in the same umbrella framework. To do this the subframework is built with “-allowable_client client_name” and an LC_SUB_CLIENT load command is created for each -allowable_client flag. The client_name is usually a framework name. It can also be a name used for bundles clients where the bundle is built with “-client_name client_name”.
Fields§
§cmd: u32
LC_SUB_CLIENT
cmdsize: u32
includes client string
client: LcStr
the client name
Trait Implementations§
source§impl Clone for SubClientCommand
impl Clone for SubClientCommand
source§fn clone(&self) -> SubClientCommand
fn clone(&self) -> SubClientCommand
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 SubClientCommand
impl Debug for SubClientCommand
source§impl<'a> IntoCtx<Endian> for &'a SubClientCommand
impl<'a> IntoCtx<Endian> for &'a SubClientCommand
source§impl IntoCtx<Endian> for SubClientCommand
impl IntoCtx<Endian> for SubClientCommand
source§impl<'a> TryFromCtx<'a, Endian> for SubClientCommandwhere
SubClientCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for SubClientCommandwhere SubClientCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a SubClientCommand
impl<'a> TryIntoCtx<Endian> for &'a SubClientCommand
source§impl TryIntoCtx<Endian> for SubClientCommand
impl TryIntoCtx<Endian> for SubClientCommand
impl Copy for SubClientCommand
Auto Trait Implementations§
impl RefUnwindSafe for SubClientCommand
impl Send for SubClientCommand
impl Sync for SubClientCommand
impl Unpin for SubClientCommand
impl UnwindSafe for SubClientCommand
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