macro_rules! abi {
("Rust") => { ... };
("C") => { ... };
("C-unwind") => { ... };
("system") => { ... };
("system-unwind") => { ... };
("aapcs") => { ... };
("aapcs-unwind") => { ... };
("cdecl") => { ... };
("cdecl-unwind") => { ... };
("stdcall") => { ... };
("stdcall-unwind") => { ... };
("fastcall") => { ... };
("fastcall-unwind") => { ... };
("thiscall") => { ... };
("thiscall-unwind") => { ... };
("vectorcall") => { ... };
("vectorcall-unwind") => { ... };
("sysv64") => { ... };
("sysv64-unwind") => { ... };
("win64") => { ... };
("win64-unwind") => { ... };
("efiapi") => { ... };
}Expand description
Macro to convert an abi string to the corresponding Abi marker type.