Macro actyxos_sdk::app_id[][src]

macro_rules! app_id {
    ($lit : tt) => { ... };
}
Expand description

Macro for constructing an AppId literal.

This is how it works:

use actyxos_sdk::{app_id, tagged::AppId};
let app_id: AppId = app_id!("abc");

This does not compile:

use actyxos_sdk::{app_id, tagged::AppId};
let app_id: AppId = app_id!("");