Struct object::macho::EncryptionInfoCommand64 [−][src]
#[repr(C)]pub struct EncryptionInfoCommand64<E: Endian> {
pub cmd: U32<E>,
pub cmdsize: U32<E>,
pub cryptoff: U32<E>,
pub cryptsize: U32<E>,
pub cryptid: U32<E>,
pub pad: U32<E>,
}
Fields
cmd: U32<E>
LC_ENCRYPTION_INFO_64
cmdsize: U32<E>
sizeof(struct EncryptionInfoCommand64)
cryptoff: U32<E>
file offset of encrypted range
cryptsize: U32<E>
file size of encrypted range
cryptid: U32<E>
which enryption system, 0 means not-encrypted yet
pad: U32<E>
padding to make this struct’s size a multiple of 8 bytes
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for EncryptionInfoCommand64<E> where
E: RefUnwindSafe,
impl<E> Send for EncryptionInfoCommand64<E> where
E: Send,
impl<E> Sync for EncryptionInfoCommand64<E> where
E: Sync,
impl<E> Unpin for EncryptionInfoCommand64<E> where
E: Unpin,
impl<E> UnwindSafe for EncryptionInfoCommand64<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more