Name Mangling support for IDL

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

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.