Struct object::elf::CompressionHeader32 [−][src]
#[repr(C)]pub struct CompressionHeader32<E: Endian> {
pub ch_type: U32Bytes<E>,
pub ch_size: U32Bytes<E>,
pub ch_addralign: U32Bytes<E>,
}
Expand description
Section compression header.
Used when SHF_COMPRESSED
is set.
Note: this type currently allows for misaligned headers, but that may be changed in a future version.
Fields
ch_type: U32Bytes<E>
Compression format. One of the ELFCOMPRESS_*
values.
ch_size: U32Bytes<E>
Uncompressed data size.
ch_addralign: U32Bytes<E>
Uncompressed data alignment.
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<E> RefUnwindSafe for CompressionHeader32<E> where
E: RefUnwindSafe,
impl<E> Send for CompressionHeader32<E> where
E: Send,
impl<E> Sync for CompressionHeader32<E> where
E: Sync,
impl<E> Unpin for CompressionHeader32<E> where
E: Unpin,
impl<E> UnwindSafe for CompressionHeader32<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more