Open a scope and then freeze it in time for future access.
This crate allows constructing structs that contain references and keeping them alive alongside the data they reference, without a lifetime.
This is especially useful for zero-copy parsers that construct elaborate (and possibly costly) representations that borrow the source data.
In this regard, this crate has similar use cases as yoke.
Unlike yoke, this crate achieves that by leveraging async functions. At their core, async functions are self-referential structs. this crate simply provides a way to ex-filtrate references outside of the async function, in a controlled manner.
Soundness note
While the code of this crate was reviewed carefully and tested using miri, this crate is using extremely unsafe code that is easy to get wrong.
To emphasize what is already written in the license, use at your own risk.
Using this crate
After you identified the data and its borrowed representation that you'd like to access without a lifetime, using this crate will typically encompass a few steps:
-
Define a helper type that will express where the lifetimes of the borrowed representation live. Given the following types:
; ;we want to define an helper type that will implement the [
Family] trait and tie its lifetime toMyParsedData's lifetime.# ; # ; ; // empty type, no lifetime.- Define an async function that setups the data and its borrowed representation:
# ; # ; # ; // empty type, no lifetime. # async# ; # ; # ; // empty type, no lifetime. # # async # /* 👈 will be returned from loop */ let mut scope = new; scope.open; // You can now store the open scope anywhere you want.- Lastly, enter the scope to retrieve access to the referenced value.
# ; # ; # ; // empty type, no lifetime. # # async # /* 👈 will be returned from loop */ # let mut scope = new; # scope.open; scope.enter;
Kinds of scopes
This crate provides two kinds of scopes, at the moment, with varying properties:
| Scope | Allocations | Moveable after opening | Thread-safe |
|---|---|---|---|
[BoxScope] |
1 (size of the contained Future + 1 pointer to the reference type) | Yes | No |
[StackScope] |
0 | No | No |
An RcScope and a MutexScope could
Inner async support
At the moment, although the functions passed to [BoxScope::open] are asynchronous, they should not await futures other than the [FrozenFuture]. Attempting to do so will result in a panic if the future does not resolve immediately.
Future versions of this crate could provide async version of [BoxScope::enter] to handle the asynchronous use case.
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.