structstd.pdb.LineNumberEntry.Flags[src]

Fields

start: u24

Start line number

end: u7

Delta of lines to the end of the expression. Still unclear.

is_statement: bool

Source Code

Source code
pub const Flags = packed struct(u32) {
    /// Start line number
    start: u24,
    /// Delta of lines to the end of the expression. Still unclear.
    // TODO figure out the point of this field.
    end: u7,
    is_statement: bool,
}