I am writing a small IDL which has generics with syntax like below
record Name<T, E> {
name: T,
id: E
}
I want to monomorphize the record name for all the concrete types used along Name
struct. I am looking for any modern name-mangling scheme or any useful crate I can use up. I am right now looking on the Rust RFC: 2603-rust-symbol-name-mangling-v0 - The Rust RFC Book