Struct gimli::Piece
[−]
[src]
pub struct Piece<'input> {
pub size_in_bits: Option<u64>,
pub bit_offset: Option<u64>,
pub location: Location<'input>,
}The description of a single piece of the result of a DWARF expression.
Fields
size_in_bits: Option<u64>
If given, the size of the piece in bits. If None, then the
piece takes its size from the enclosed location.
bit_offset: Option<u64>
If given, the bit offset of the piece. If None, then the
piece starts at the next byte boundary.
location: Location<'input>
Where this piece is to be found.
Trait Implementations
impl<'input> Debug for Piece<'input>[src]
impl<'input> Clone for Piece<'input>[src]
fn clone(&self) -> Piece<'input>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'input> Copy for Piece<'input>[src]
impl<'input> PartialEq for Piece<'input>[src]
fn eq(&self, __arg_0: &Piece<'input>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Piece<'input>) -> bool
This method tests for !=.