main

Attribute Macro main 

Source
#[main]
Expand description

Uses pollster::block_on to enable async fn main() {}.

ยงExample

#[pollster::main]
async fn main() {
    let my_fut = async {};

    my_fut.await;
}