3 releases

0.1.2 Jun 19, 2022
0.1.1 Jun 19, 2022
0.1.0 Jun 18, 2022

#1169 in Procedural macros

21 downloads per month

MIT/Apache

12KB
180 lines

auto_ref

Attributes for replace reference parameter &T to impl AsRef<T> or impl Borrow<T>

Usage

use auto_ref::{auto_ref, auto_borrow};

#[auto_ref]
fn example1(s: &str, t: &mut str) {
    println!("{}, {}", s, t);
}

#[auto_borrow]
fn example2(s: &str, t: &mut str) {
    println!("{}, {}", s, t);
}

#[auto_ref(s)]
#[auto_borrow(t)]
fn example3(s: &str, t: &str) {
    println!("{}, {}", s, t);
}

The above code is convert to

fn example1(s: impl ::core::convert::AsRef<str>, t: impl ::core::convert::AsMut<str>) {
    let s: &str = s.as_ref();
    let t: &mut str = t.as_mut();
    println!("{}, {}", s, t);
}

fn example2(s: impl ::core::borrow::Borrow<str>, t: impl ::core::borrow::BorrowMut<str>) {
    let s: &str = s.borrow();
    let t: &mut str = t.borrow_mut();
    println!("{}, {}", s, t);
}

fn example3(s: impl ::core::convert::AsRef<str>, t: impl ::core::borrow::Borrow<str>) {
    let t: &str = t.borrow();
    let s: &str = s.as_ref();
    println!("{}, {}", s, t);
}

Dependencies

~1.5MB
~33K SLoC