pub enum ConvertLineRow {
SetAddress(u64),
Row(LineRow),
EndSequence(u64),
}Expand description
The result of ConvertLineProgram::read_row.
Variants§
SetAddress(u64)
The address from a DW_LNE_set_address instruction.
All subsequent rows in the sequence will have their address_offset
field set to an offset from this address.
Row(LineRow)
A row produced by the line number program.
EndSequence(u64)
The address offset of the end of the sequence.
Trait Implementations§
Source§impl Debug for ConvertLineRow
impl Debug for ConvertLineRow
Source§impl PartialEq for ConvertLineRow
impl PartialEq for ConvertLineRow
impl Eq for ConvertLineRow
impl StructuralPartialEq for ConvertLineRow
Auto Trait Implementations§
impl Freeze for ConvertLineRow
impl RefUnwindSafe for ConvertLineRow
impl Send for ConvertLineRow
impl Sync for ConvertLineRow
impl Unpin for ConvertLineRow
impl UnsafeUnpin for ConvertLineRow
impl UnwindSafe for ConvertLineRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.