pub struct ScopeVec<T> { /* private fields */ }
Expand description

Small data structure to help extend the lifetime of a slice to a higher scope.

This is currently used during component translation where translation in general works on a borrowed slice which contains all input modules, but generated adapter modules for components don’t live within the original slice but the data structures are much easier if the dynamically generated adapter modules live for the same lifetime as the original input slice. To solve this problem this ScopeVec helper is used to move ownership of a Vec<T> to a higher scope in the program, then borrowing the slice from that scope.

Implementations

Creates a new blank scope.

Transfers ownership of data into this scope and then yields the slice back to the caller.

The original data will be deallocated when self is dropped.

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.