Struct symbolic::debuginfo::dwarf::gimli::LineEncoding[]

pub struct LineEncoding {
    pub minimum_instruction_length: u8,
    pub maximum_operations_per_instruction: u8,
    pub default_is_stmt: bool,
    pub line_base: i8,
    pub line_range: u8,
}

Encoding parameters for a line number program.

Fields

minimum_instruction_length: u8

The size in bytes of the smallest target machine instruction.

maximum_operations_per_instruction: u8

The maximum number of individual operations that may be encoded in an instruction.

default_is_stmt: bool

The initial value of the is_stmt register.

line_base: i8

The minimum value which a special opcode can add to the line register.

line_range: u8

The range of values which a special opcode can add to the line register.

Trait Implementations

impl Clone for LineEncoding

impl Copy for LineEncoding

impl Debug for LineEncoding

impl Default for LineEncoding

impl Eq for LineEncoding

impl Hash for LineEncoding

impl PartialEq<LineEncoding> for LineEncoding

impl StructuralEq for LineEncoding

impl StructuralPartialEq for LineEncoding

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.