macro_rules! function_fqn {
    () => { ... };
}
Expand description

Expands to the current functions’s fully qualified name

References

Examples

use rivia::prelude::*;

fn my_func() -> &'static str {
    function!()
}
assert_eq!(my_func(), "my_func");