pub struct IncompleteFuture<Budget, F>(_) 
where
    F: Future,
    Budget: Budgetable
;
Expand description

A future that was budgeted using Context::run_with_budget() that has not yet completed.

Implementations

Adds additional_budget to the remaining balance and continues executing the future.

This function returns a future that must be awaited for anything to happen.

Waits for additional budget to be allocated through ReplenishableBudget::replenish().

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.