Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Derive a type ID that is universal across many Rust binaries

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE.md
Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

jakmeier/universal-type-id

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Universal Type ID

A prototype for a type ID that can be shared between binaries.

#[derive(UniversalType)]
struct Person {
    name: String,
    year: i16,
}

fn main() {
    let uid = UniversalTypeId::of::<Person>();
    println!("Numerical value of universal type ID: {}", uid.as_u128());
}

So far, the prototype only supports struct types. Enum and union support could be added easily.

Support for generic parameters is planned but I haven't quite figured out yet how to do it.

Other types (functions, closures, trait objects etc.) are most likely out of scope. I think that because I don't see an obvious way how it could be done and it's also difficult to find real use cases.

About

Derive a type ID that is universal across many Rust binaries

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE.md
Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages