Struct gimli::read::ArangeEntry
source · [−]Expand description
A single parsed arange.
Implementations
sourceimpl<T: Copy> ArangeEntry<T>
impl<T: Copy> ArangeEntry<T>
sourcepub fn debug_info_offset(&self) -> DebugInfoOffset<T>
pub fn debug_info_offset(&self) -> DebugInfoOffset<T>
Return the offset into the .debug_info section for this arange.
Trait Implementations
sourceimpl<T: Clone + Copy> Clone for ArangeEntry<T>
impl<T: Clone + Copy> Clone for ArangeEntry<T>
sourcefn clone(&self) -> ArangeEntry<T>
fn clone(&self) -> ArangeEntry<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 + Copy> Debug for ArangeEntry<T>
impl<T: Debug + Copy> Debug for ArangeEntry<T>
sourceimpl<T: Copy + Ord> Ord for ArangeEntry<T>
impl<T: Copy + Ord> Ord for ArangeEntry<T>
sourceimpl<T: PartialEq + Copy> PartialEq<ArangeEntry<T>> for ArangeEntry<T>
impl<T: PartialEq + Copy> PartialEq<ArangeEntry<T>> for ArangeEntry<T>
sourcefn eq(&self, other: &ArangeEntry<T>) -> bool
fn eq(&self, other: &ArangeEntry<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ArangeEntry<T>) -> bool
fn ne(&self, other: &ArangeEntry<T>) -> bool
This method tests for !=
.
sourceimpl<T: Copy + Ord> PartialOrd<ArangeEntry<T>> for ArangeEntry<T>
impl<T: Copy + Ord> PartialOrd<ArangeEntry<T>> for ArangeEntry<T>
sourcefn partial_cmp(&self, other: &ArangeEntry<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &ArangeEntry<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<T: Eq + Copy> Eq for ArangeEntry<T>
impl<T: Copy> StructuralEq for ArangeEntry<T>
impl<T: Copy> StructuralPartialEq for ArangeEntry<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for ArangeEntry<T> where
T: RefUnwindSafe,
impl<T> Send for ArangeEntry<T> where
T: Send,
impl<T> Sync for ArangeEntry<T> where
T: Sync,
impl<T> Unpin for ArangeEntry<T> where
T: Unpin,
impl<T> UnwindSafe for ArangeEntry<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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more