pub struct VerneedIterator<'data, Elf: FileHeader> { /* private fields */ }
Expand description
An iterator over the entries in an ELF SHT_GNU_verneed
section.
Implementations
sourceimpl<'data, Elf: FileHeader> VerneedIterator<'data, Elf>
impl<'data, Elf: FileHeader> VerneedIterator<'data, Elf>
Trait Implementations
sourceimpl<'data, Elf: Clone + FileHeader> Clone for VerneedIterator<'data, Elf> where
Elf::Endian: Clone,
impl<'data, Elf: Clone + FileHeader> Clone for VerneedIterator<'data, Elf> where
Elf::Endian: Clone,
sourcefn clone(&self) -> VerneedIterator<'data, Elf>
fn clone(&self) -> VerneedIterator<'data, Elf>
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
Auto Trait Implementations
impl<'data, Elf> RefUnwindSafe for VerneedIterator<'data, Elf> where
<Elf as FileHeader>::Endian: RefUnwindSafe,
impl<'data, Elf> Send for VerneedIterator<'data, Elf> where
<Elf as FileHeader>::Endian: Send,
impl<'data, Elf> Sync for VerneedIterator<'data, Elf> where
<Elf as FileHeader>::Endian: Sync,
impl<'data, Elf> Unpin for VerneedIterator<'data, Elf> where
<Elf as FileHeader>::Endian: Unpin,
impl<'data, Elf> UnwindSafe for VerneedIterator<'data, Elf> where
<Elf as FileHeader>::Endian: 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<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