Attribute Macro pseudonym::alias

source ·
#[alias]
Expand description

Declare an aliased for the following item.

Example:

#[alias(short_name)]
fn very_long_function_name() {
    // ...
}

fn main () {
    short_name(); // use the alias!
}