Skip to main content

async_data

Macro async_data 

Source
async_data!() { /* proc-macro */ }
Expand description

The async_data! macro for creating order-independent async data loading.

§Examples

let data = async_data!(cx, || {
    Ok(fetch_data())
});