pub struct MachOSignatureData<'a> {
    pub linkedit_segment_index: usize,
    pub linkedit_segment_start_offset: usize,
    pub linkedit_segment_end_offset: usize,
    pub linkedit_signature_start_offset: usize,
    pub linkedit_signature_end_offset: usize,
    pub signature_start_offset: usize,
    pub signature_end_offset: usize,
    pub linkedit_segment_data: &'a [u8],
    pub signature_data: &'a [u8],
}
Expand description

Describes signature data embedded within a Mach-O binary.

Fields

linkedit_segment_index: usize

Which segment offset is the __LINKEDIT segment.

linkedit_segment_start_offset: usize

Start offset of __LINKEDIT segment within the binary.

linkedit_segment_end_offset: usize

End offset of __LINKEDIT segment within the binary.

linkedit_signature_start_offset: usize

Start offset of signature data in __LINKEDIT within the binary.

linkedit_signature_end_offset: usize

End offset of signature data in __LINKEDIT within the binary.

signature_start_offset: usize

The start offset of the signature data within the __LINKEDIT segment.

signature_end_offset: usize

The end offset of the signature data within the __LINKEDIT segment.

linkedit_segment_data: &'a [u8]

Raw data in the __LINKEDIT segment.

signature_data: &'a [u8]

The signature data within the __LINKEDIT segment.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more