Struct gimli::DebugAddrBase
source · [−]pub struct DebugAddrBase<T = usize>(pub T);
Expand description
An offset to a set of entries in the .debug_addr
section.
Tuple Fields
0: T
Trait Implementations
sourceimpl<T: Clone> Clone for DebugAddrBase<T>
impl<T: Clone> Clone for DebugAddrBase<T>
sourcefn clone(&self) -> DebugAddrBase<T>
fn clone(&self) -> DebugAddrBase<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug> Debug for DebugAddrBase<T>
impl<T: Debug> Debug for DebugAddrBase<T>
sourceimpl<T: PartialEq> PartialEq<DebugAddrBase<T>> for DebugAddrBase<T>
impl<T: PartialEq> PartialEq<DebugAddrBase<T>> for DebugAddrBase<T>
sourcefn eq(&self, other: &DebugAddrBase<T>) -> bool
fn eq(&self, other: &DebugAddrBase<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DebugAddrBase<T>) -> bool
fn ne(&self, other: &DebugAddrBase<T>) -> bool
This method tests for !=
.
impl<T: Copy> Copy for DebugAddrBase<T>
impl<T: Eq> Eq for DebugAddrBase<T>
impl<T> StructuralEq for DebugAddrBase<T>
impl<T> StructuralPartialEq for DebugAddrBase<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for DebugAddrBase<T> where
T: RefUnwindSafe,
impl<T> Send for DebugAddrBase<T> where
T: Send,
impl<T> Sync for DebugAddrBase<T> where
T: Sync,
impl<T> Unpin for DebugAddrBase<T> where
T: Unpin,
impl<T> UnwindSafe for DebugAddrBase<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more