Struct gimli::DebugLineStrOffset
source · [−]pub struct DebugLineStrOffset<T = usize>(pub T);
Expand description
An offset into the .debug_line_str
section.
Tuple Fields
0: T
Trait Implementations
sourceimpl<T: Clone> Clone for DebugLineStrOffset<T>
impl<T: Clone> Clone for DebugLineStrOffset<T>
sourcefn clone(&self) -> DebugLineStrOffset<T>
fn clone(&self) -> DebugLineStrOffset<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 DebugLineStrOffset<T>
impl<T: Debug> Debug for DebugLineStrOffset<T>
sourceimpl<T: PartialEq> PartialEq<DebugLineStrOffset<T>> for DebugLineStrOffset<T>
impl<T: PartialEq> PartialEq<DebugLineStrOffset<T>> for DebugLineStrOffset<T>
sourcefn eq(&self, other: &DebugLineStrOffset<T>) -> bool
fn eq(&self, other: &DebugLineStrOffset<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DebugLineStrOffset<T>) -> bool
fn ne(&self, other: &DebugLineStrOffset<T>) -> bool
This method tests for !=
.
impl<T: Copy> Copy for DebugLineStrOffset<T>
impl<T: Eq> Eq for DebugLineStrOffset<T>
impl<T> StructuralEq for DebugLineStrOffset<T>
impl<T> StructuralPartialEq for DebugLineStrOffset<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for DebugLineStrOffset<T> where
T: RefUnwindSafe,
impl<T> Send for DebugLineStrOffset<T> where
T: Send,
impl<T> Sync for DebugLineStrOffset<T> where
T: Sync,
impl<T> Unpin for DebugLineStrOffset<T> where
T: Unpin,
impl<T> UnwindSafe for DebugLineStrOffset<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