Struct gimli::read::UnwindExpression
source · pub struct UnwindExpression<T: ReaderOffset> {
pub offset: T,
pub length: T,
}
Expand description
The location of a DWARF expression within an unwind section.
This is stored as an offset and length within the section instead of as a
Reader
to avoid lifetime issues when reusing UnwindContext
.
Fields§
§offset: T
The offset of the expression within the section.
length: T
The length of the expression.
Implementations§
source§impl<T: ReaderOffset> UnwindExpression<T>
impl<T: ReaderOffset> UnwindExpression<T>
sourcepub fn get<R: Reader<Offset = T>, S: UnwindSection<R>>(
&self,
section: &S,
) -> Result<Expression<R>>
pub fn get<R: Reader<Offset = T>, S: UnwindSection<R>>( &self, section: &S, ) -> Result<Expression<R>>
Get the expression from the section.
The offset and length were previously validated when the
UnwindExpression
was created, so this should not fail.
Trait Implementations§
source§impl<T: Clone + ReaderOffset> Clone for UnwindExpression<T>
impl<T: Clone + ReaderOffset> Clone for UnwindExpression<T>
source§fn clone(&self) -> UnwindExpression<T>
fn clone(&self) -> UnwindExpression<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug + ReaderOffset> Debug for UnwindExpression<T>
impl<T: Debug + ReaderOffset> Debug for UnwindExpression<T>
source§impl<T: PartialEq + ReaderOffset> PartialEq for UnwindExpression<T>
impl<T: PartialEq + ReaderOffset> PartialEq for UnwindExpression<T>
impl<T: Copy + ReaderOffset> Copy for UnwindExpression<T>
impl<T: Eq + ReaderOffset> Eq for UnwindExpression<T>
impl<T: ReaderOffset> StructuralPartialEq for UnwindExpression<T>
Auto Trait Implementations§
impl<T> Freeze for UnwindExpression<T>where
T: Freeze,
impl<T> RefUnwindSafe for UnwindExpression<T>where
T: RefUnwindSafe,
impl<T> Send for UnwindExpression<T>where
T: Send,
impl<T> Sync for UnwindExpression<T>where
T: Sync,
impl<T> Unpin for UnwindExpression<T>where
T: Unpin,
impl<T> UnwindSafe for UnwindExpression<T>where
T: UnwindSafe,
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.