rewrite-impl-trait

Crates.iorewrite-impl-trait
lib.rsrewrite-impl-trait
version0.1.0
sourcesrc
created_at2023-01-14 19:02:01.664673
updated_at2023-01-14 19:02:01.664673
descriptionRewrites impl Trait as method generics
homepagehttps://github.com/austinjones/rewrite-impl-trait-rs
repositoryhttps://github.com/austinjones/rewrite-impl-trait-rs
max_upload_size
id758993
size12,189
Austin Jones (austinjones)

documentation

README

rewrite-impl-trait

This crate converts usage of impl Trait in function signatures to method generics. Here are some examples:

How it works

The macro into_generic converts impl Trait definitions in

#[rewrite_impl_trait::into_generic]
fn to_string(arg: impl ToString) -> String {
    arg.to_string()
}

// expands to:
fn to_string<RewriteImplTrait0: ToString>(arg: RewriteImplTrait0) -> String {
    arg.to_string()
}
pub trait AppendString {
    fn append_string(&mut self, param: impl ToString);
}

// expands to:
pub trait AppendString {
    fn append_string<RewriteImplTrait0: ToString>(&mut self, param: RewriteImplTrait0);
}

This can be used to work around language issues with impl Trait, such as a lack of support in type aliases. It also enables mockall, for traits that use impl Trait in method arguments.

Usage

Run cargo add rewrite-impl-trait.

Then add #[rewrite_impl_trait::into_generic] to your trait, trait impl, or function.

Commit count: 3

cargo fmt