Skip to content

not-matthias/rename-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rename-rs

crates.io docs.rs Lines of Code

Easy modification of structure names.

Example

#[rename(prepend = "One", name = "Two", append = "Three")]
struct Placeholder {
    pub one: u64,
    pub two: u64,
    pub three: u64
}

The name of the struct is now OneTwoThree.

Why?

When working with declarative macros you can't create new idents. You could also remove this problem by using a proc-macro, but this would increase the complexity. However, there's the macro concat_idents which allows you to, as you can probably guess, concat identifiers. The big problem with this macro is, that it's not yet stable and doesn't allow the creation of new identifiers. Thus I decided to create my own little helper crate that solves this problem.

The implementation for the aforementioned problem can be found here.

About

Easy modification of structure names.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages