Struct addr2line::lookup::LoopingLookup

source ·
pub(crate) struct LoopingLookup<T, L, F>{
    continuation: L,
    mutator: F,
}
Expand description

Some functions (e.g. find_frames) require considering multiple compilation units, each of which might require their own split DWARF lookup (and thus produce a continuation).

We store the underlying continuation here as well as a mutator function that will either a) decide that the result of this continuation is what is needed and mutate it to the final result or b) produce another LookupResult. new_lookup will in turn eagerly drive any non-continuation LookupResult with successive invocations of the mutator, until a new continuation or a final result is produced. And finally, the impl of LookupContinuation::resume will call new_lookup each time the computation is resumed.

Fields§

§continuation: L§mutator: F

Implementations§

source§

impl<T, L, F> LoopingLookup<T, L, F>

source

pub(crate) fn new_complete(t: T) -> LookupResult<Self>

source

pub(crate) fn new_lookup(r: LookupResult<L>, mutator: F) -> LookupResult<Self>

Trait Implementations§

source§

impl<T, L, F> LookupContinuation for LoopingLookup<T, L, F>

§

type Output = T

The final output of this operation.
§

type Buf = <L as LookupContinuation>::Buf

The type of reader used.
source§

fn resume(self, v: Option<Arc<Dwarf<Self::Buf>>>) -> LookupResult<Self>

Resumes the operation with the provided data. Read more

Auto Trait Implementations§

§

impl<T, L, F> Freeze for LoopingLookup<T, L, F>
where L: Freeze, F: Freeze,

§

impl<T, L, F> RefUnwindSafe for LoopingLookup<T, L, F>

§

impl<T, L, F> Send for LoopingLookup<T, L, F>
where L: Send, F: Send,

§

impl<T, L, F> Sync for LoopingLookup<T, L, F>
where L: Sync, F: Sync,

§

impl<T, L, F> Unpin for LoopingLookup<T, L, F>
where L: Unpin, F: Unpin,

§

impl<T, L, F> UnwindSafe for LoopingLookup<T, L, F>
where L: UnwindSafe, F: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.