Struct goblin::mach::load_command::EncryptionInfoCommand32
source · #[repr(C)]pub struct EncryptionInfoCommand32 {
pub cmd: u32,
pub cmdsize: u32,
pub cryptoff: u32,
pub cryptsize: u32,
pub cryptid: u32,
}
Expand description
The encryption_info_command contains the file offset and size of an of an encrypted segment.
Fields§
§cmd: u32
LC_ENCRYPTION_INFO
cmdsize: u32
sizeof(struct encryption_info_command)
cryptoff: u32
file offset of encrypted range
cryptsize: u32
file size of encrypted range
cryptid: u32
which enryption system, 0 means not-encrypted yet
Trait Implementations§
source§impl Clone for EncryptionInfoCommand32
impl Clone for EncryptionInfoCommand32
source§fn clone(&self) -> EncryptionInfoCommand32
fn clone(&self) -> EncryptionInfoCommand32
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 EncryptionInfoCommand32
impl Debug for EncryptionInfoCommand32
source§impl FromCtx<Endian> for EncryptionInfoCommand32
impl FromCtx<Endian> for EncryptionInfoCommand32
source§impl<'a> IntoCtx<Endian> for &'a EncryptionInfoCommand32
impl<'a> IntoCtx<Endian> for &'a EncryptionInfoCommand32
source§impl IntoCtx<Endian> for EncryptionInfoCommand32
impl IntoCtx<Endian> for EncryptionInfoCommand32
source§impl<'a> TryFromCtx<'a, Endian> for EncryptionInfoCommand32where
EncryptionInfoCommand32: 'a,
impl<'a> TryFromCtx<'a, Endian> for EncryptionInfoCommand32where EncryptionInfoCommand32: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a EncryptionInfoCommand32
impl<'a> TryIntoCtx<Endian> for &'a EncryptionInfoCommand32
source§impl TryIntoCtx<Endian> for EncryptionInfoCommand32
impl TryIntoCtx<Endian> for EncryptionInfoCommand32
impl Copy for EncryptionInfoCommand32
Auto Trait Implementations§
impl RefUnwindSafe for EncryptionInfoCommand32
impl Send for EncryptionInfoCommand32
impl Sync for EncryptionInfoCommand32
impl Unpin for EncryptionInfoCommand32
impl UnwindSafe for EncryptionInfoCommand32
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