Struct gimli::read::RawRngListIter
source · pub struct RawRngListIter<R: Reader> {
input: R,
encoding: Encoding,
format: RangeListsFormat,
}
Expand description
A raw iterator over an address range list.
This iterator does not perform any processing of the range entries, such as handling base addresses.
Fields§
§input: R
§encoding: Encoding
§format: RangeListsFormat
Implementations§
source§impl<R: Reader> RawRngListIter<R>
impl<R: Reader> RawRngListIter<R>
sourcefn new(
input: R,
encoding: Encoding,
format: RangeListsFormat,
) -> RawRngListIter<R>
fn new( input: R, encoding: Encoding, format: RangeListsFormat, ) -> RawRngListIter<R>
Construct a RawRngListIter
.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for RawRngListIter<R>where
R: Freeze,
impl<R> RefUnwindSafe for RawRngListIter<R>where
R: RefUnwindSafe,
impl<R> Send for RawRngListIter<R>where
R: Send,
impl<R> Sync for RawRngListIter<R>where
R: Sync,
impl<R> Unpin for RawRngListIter<R>where
R: Unpin,
impl<R> UnwindSafe for RawRngListIter<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more