# samotop-async-trait 0.2.1
[![github]](https://github.com/dtolnay/async-trait) [![crates-io]](https://crates.io/crates/async-trait) [![docs-rs]](https://docs.rs/async-trait)
[github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
[crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
[docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logoColor=white&logo=data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiNmNWY1ZjUiIGQ9Ik00ODguNiAyNTAuMkwzOTIgMjE0VjEwNS41YzAtMTUtOS4zLTI4LjQtMjMuNC0zMy43bC0xMDAtMzcuNWMtOC4xLTMuMS0xNy4xLTMuMS0yNS4zIDBsLTEwMCAzNy41Yy0xNC4xIDUuMy0yMy40IDE4LjctMjMuNCAzMy43VjIxNGwtOTYuNiAzNi4yQzkuMyAyNTUuNSAwIDI2OC45IDAgMjgzLjlWMzk0YzAgMTMuNiA3LjcgMjYuMSAxOS45IDMyLjJsMTAwIDUwYzEwLjEgNS4xIDIyLjEgNS4xIDMyLjIgMGwxMDMuOS01MiAxMDMuOSA1MmMxMC4xIDUuMSAyMi4xIDUuMSAzMi4yIDBsMTAwLTUwYzEyLjItNi4xIDE5LjktMTguNiAxOS45LTMyLjJWMjgzLjljMC0xNS05LjMtMjguNC0yMy40LTMzLjd6TTM1OCAyMTQuOGwtODUgMzEuOXYtNjguMmw4NS0zN3Y3My4zek0xNTQgMTA0LjFsMTAyLTM4LjIgMTAyIDM4LjJ2LjZsLTEwMiA0MS40LTEwMi00MS40di0uNnptODQgMjkxLjFsLTg1IDQyLjV2LTc5LjFsODUtMzguOHY3NS40em0wLTExMmwtMTAyIDQxLjQtMTAyLTQxLjR2LS42bDEwMi0zOC4yIDEwMiAzOC4ydi42em0yNDAgMTEybC04NSA0Mi41di03OS4xbDg1LTM4Ljh2NzUuNHptMC0xMTJsLTEwMiA0MS40LTEwMi00MS40di0uNmwxMDItMzguMiAxMDIgMzguMnYuNnoiPjwvcGF0aD48L3N2Zz4K
Type erasure for async trait methods
The initial round of stabilizations for the async/await language feature in
Rust 1.39 did not include support for async fn in traits. Trying to include
an async fn in a trait produces the following error:
```compile_fail
trait MyTrait {
async fn f() {}
}
```
```
error[E0706]: trait fns cannot be declared `async`
--> src/main.rs:4:5
|
4 | async fn f() {}
| ^^^^^^^^^^^^^^^
```
This crate provides an attribute macro to make async fn in traits work.
Please refer to [*why async fn in traits are hard*][hard] for a deeper
analysis of how this implementation differs from what the compiler and
language hope to deliver in the future.
[hard]: https://smallcultfollowing.com/babysteps/blog/2019/10/26/async-fn-in-traits-are-hard/
## Example
This example implements the core of a highly effective advertising platform
using async fn in a trait.
The only thing to notice here is that we write an `#[async_trait]` macro on
top of traits and trait impls that contain async fn, and then they work.
```rust
use samotop_async_trait::async_trait;
#[async_trait]
trait Advertisement {
async fn run(&self);
}
struct Modal;
#[async_trait]
impl Advertisement for Modal {
async fn run(&self) {
self.render_fullscreen().await;
for _ in 0..4u16 {
remind_user_to_join_mailing_list().await;
}
self.hide_for_now().await;
}
}
struct AutoplayingVideo {
media_url: String,
}
#[async_trait]
impl Advertisement for AutoplayingVideo {
async fn run(&self) {
let stream = connect(&self.media_url).await;
stream.play().await;
// Video probably persuaded user to join our mailing list!
Modal.run().await;
}
}
```
## Supported features
It is the intention that all features of Rust traits should work nicely with
##\[async_trait\], but the edge cases are numerous. *Please file an issue if
you see unexpected borrow checker errors, type errors, or warnings.* There is
no use of `unsafe` in the expanded code, so rest assured that if your code
compiles it can't be that badly broken.
> ☑ Self by value, by reference, by mut reference, or no self;
> ☑ Any number of arguments, any return value;
> ☑ Generic type parameters and lifetime parameters;
> ☑ Associated types;
> ☑ Having async and non-async functions in the same trait;
> ☑ Default implementations provided by the trait;
> ☑ Elided lifetimes;
> ☑ Dyn-capable traits.
> ☑ Opt in for stricter bounds on futures with #[future_is[BOUND]].
## Explanation
Async fns get transformed into methods that return `Pin>` and delegate to a private async freestanding function.
For example the `impl Advertisement for AutoplayingVideo` above would be
expanded as:
```rust
impl Advertisement for AutoplayingVideo {
fn run<'async_trait>(
&'async_trait self,
) -> Pin + Send + 'async_trait>>
where
Self: Sync + 'async_trait,
{
let fut = async move {
/* the original method body */
};
Box::pin(fut)
}
}
```
## Non-threadsafe futures
Not all async traits need futures that are `dyn Future + Send`. To avoid
having Send and Sync bounds placed on the async trait methods, invoke the
async trait macro as `#[async_trait(?Send)]` on both the trait and the impl
blocks.
## Elided lifetimes
Be aware that async fn syntax does not allow lifetime elision outside of `&`
and `&mut` references. (This is true even when not using #\[async_trait\].)
Lifetimes must be named or marked by the placeholder `'_`.
Fortunately the compiler is able to diagnose missing lifetimes with a good
error message.
```compile_fail
# use samotop_async_trait::async_trait;
#
type Elided<'a> = &'a usize;
#[async_trait]
trait Test {
async fn test(elided: Elided, okay: &usize) -> &usize { elided }
}
```
```console
error[E0106]: missing lifetime specifier
|
19 | async fn test(elided: Elided, okay: &usize) -> &usize { elided }
| ------ ------ ^ expected named lifetime parameter
|
= help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from `elided` or `okay`
note: these named lifetimes are available to use
|
17 | #[async_trait]
| ^^^^^^^^^^^^^^
```
The fix is to name the lifetime.
```rust
#[async_trait]
trait Test {
// either
async fn test<'e>(elided: Elided<'e>, okay: &usize) -> &'e usize { elided }
}
```
## Dyn traits
Traits with async methods can be used as trait objects as long as they meet
the usual requirements for dyn -- no methods with type parameters, no self
by value, no associated types, etc.
```rust
#[async_trait]
pub trait ObjectSafe {
async fn f(&self);
async fn g(&mut self);
}
impl ObjectSafe for MyType {...}
let value: MyType = ...;
let object = &value as &dyn ObjectSafe; // make trait object
```
The one wrinkle is in traits that provide default implementations of async
methods. In order for the default implementation to produce a future that is
Send, the async_trait macro must emit a bound of `Self: Sync` on trait
methods that take `&self` and a bound `Self: Send` on trait methods that
take `&mut self`. An example of the former is visible in the expanded code
in the explanation section above.
If you make a trait with async methods that have default implementations,
everything will work except that the trait cannot be used as a trait object.
Creating a value of type `&dyn Trait` will produce an error that looks like
this:
```console
error: the trait `Test` cannot be made into an object
--> src/main.rs:8:5
|
8 | async fn cannot_dyn(&self) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
```
For traits that need to be object safe and need to have default
implementations for some async methods, there are two resolutions. Either
you can add Send and/or Sync as supertraits (Send if there are `&mut self`
methods with default implementations, Sync if there are `&self` methods with
default implementions) to constrain all implementors of the trait such that
the default implementations are applicable to them:
```rust
#[async_trait]
pub trait ObjectSafe: Sync { // added supertrait
async fn can_dyn(&self) {}
}
let object = &value as &dyn ObjectSafe;
```
or you can strike the problematic methods from your trait object by
bounding them with `Self: Sized`:
```rust
#[async_trait]
pub trait ObjectSafe {
async fn cannot_dyn(&self) where Self: Sized {}
// presumably other methods
}
let object = &value as &dyn ObjectSafe;
```
## Stricter future bounds with #[future_is[BOUND]]
You can require the future to be `Sync` or `'static` or even both:
```rust
#[async_trait]
trait SyncStaticFutures {
#[future_is[Sync + 'static]]
async fn sync_and_static(&self) -> String;
}
fn test(tested:T)
{
is_sync(tested.sync_and_static());
is_static(tested.sync_and_static());
}
fn is_sync(_tester: T) {}
fn is_static(_tester: T) {}
```
The problem with implementing static futures is that as soon
as the async block captures a reference to &self let's say,
the async block cannot be static. Solution: execute future
setup outside of the async block with `async_setup_ready!();`:
```rust
#[async_trait]
trait SyncStaticFutures {
#[future_is[Sync + 'static]]
async fn sync_and_static(&self) -> String;
}
struct Dummy{
message: String
}
#[async_trait]
impl SyncStaticFutures for Dummy {
#[future_is[Sync + 'static]]
async fn sync_and_static(&self) -> String
{
let msg = self.message.clone();
let msg = async move {msg}; // aka future::ready(msg)
async_setup_ready!();
// your async/await business here...
// for instance reading the string from the given file path
msg.await
}
}
```
## Credits
This is a fork of [async-trait by dtolnay](https://github.com/dtolnay/async-trait/releases/tag/0.1.41)
## License - MIT OR Apache-2.0
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 crate by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.