Macro tokio_print::aeprintln[][src]

macro_rules! aeprintln {
    () => { ... };
    ($fmt:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}

Async version of eprintln!

Example

#[macro_use]
extern crate tokio_print;

#[tokio::main]
async fn main() {
    aeprintln!("Error!"); //Error!
}

How to use

same to eprintln!