#string #str #macro

stringlit

将str转换为String的宏。

3个稳定版本

2.1.0 2023年7月4日
2.0.0 2019年4月25日
1.0.0 2019年4月24日

1202Rust 模式

每月下载量 26

MIT 许可证

3KB

stringlit

将str转换为String的宏。

// import the macros
//
use stringlit::{s, string};

fn print_string(s: String) {
    println!("{}", s);
}

fn main() {
    // now you can use
    print_string(s!("test"));
    // or
    print_string(string!("test"));
    // instead of
    print_string("test".to_owned());
}

无运行时依赖