pub struct RelocationBlockIterator<'data> { /* private fields */ }
Expand description
An iterator over the relocation blocks in the .reloc
section of a PE file.
Implementations
Trait Implementations
sourceimpl<'data> Clone for RelocationBlockIterator<'data>
impl<'data> Clone for RelocationBlockIterator<'data>
sourcefn clone(&self) -> RelocationBlockIterator<'data>
fn clone(&self) -> RelocationBlockIterator<'data>
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<'data> Debug for RelocationBlockIterator<'data>
impl<'data> Debug for RelocationBlockIterator<'data>
sourceimpl<'data> Default for RelocationBlockIterator<'data>
impl<'data> Default for RelocationBlockIterator<'data>
sourcefn default() -> RelocationBlockIterator<'data>
fn default() -> RelocationBlockIterator<'data>
Returns the “default value” for a type. Read more
impl<'data> Copy for RelocationBlockIterator<'data>
Auto Trait Implementations
impl<'data> RefUnwindSafe for RelocationBlockIterator<'data>
impl<'data> Send for RelocationBlockIterator<'data>
impl<'data> Sync for RelocationBlockIterator<'data>
impl<'data> Unpin for RelocationBlockIterator<'data>
impl<'data> UnwindSafe for RelocationBlockIterator<'data>
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