auto_ref

Crates.ioauto_ref
lib.rsauto_ref
version0.1.2
sourcesrc
created_at2022-06-18 17:05:47.378323
updated_at2022-06-19 03:19:25.372695
descriptionReplace &T to impl AsRef.
homepage
repositoryhttps://github.com/kazatsuyu/auto_ref
max_upload_size
id608611
size7,108
白山風露 (kazatsuyu)

documentation

README

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);
}
Commit count: 11

cargo fmt