[][src]Struct 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[src]

impl Copy for LineEncoding[src]

impl Debug for LineEncoding[src]

impl Default for LineEncoding[src]

impl Eq for LineEncoding[src]

impl Hash for LineEncoding[src]

impl PartialEq<LineEncoding> for LineEncoding[src]

impl StructuralEq for LineEncoding[src]

impl StructuralPartialEq for LineEncoding[src]

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.