Enum mach_object::RebaseOpCode[][src]

pub enum RebaseOpCode {
    Done,
    SetSymbolType(BindSymbolType),
    SetSegmentOffset {
        segment_index: u8,
        segment_offset: usize,
    },
    AddAddress {
        offset: isize,
    },
    Rebase {
        times: usize,
    },
    RebaseAndAddAddress {
        offset: isize,
    },
    RebaseAndSkipping {
        times: usize,
        skip: usize,
    },
}

OpCode for the rebasing symbol

Variants

Fields of SetSegmentOffset

Fields of AddAddress

Fields of Rebase

Fields of RebaseAndAddAddress

Fields of RebaseAndSkipping

Trait Implementations

impl Clone for RebaseOpCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RebaseOpCode
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RebaseOpCode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations