Thanks to visit codestin.com Credit goes to lib.rs
async-trait is a procedural macro. It will run at compile time and transform your program's source code.
async-trait
Run this command in a terminal, in your project's directory:
cargo add async-trait
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
Cargo.toml
[dependencies]
async-trait = "0.1.89"
You may need to import the macro(s) with use async_trait::*.
use async_trait::*
async_trait
Back to the crate overview.