19个版本

0.1.18 2020年6月21日
0.1.15 2020年5月29日
0.1.9 2020年3月27日
0.1.6 2019年8月15日
0.1.3 2018年11月3日

#paste 中排名第38

Download history 35210/week @ 2024-03-14 35718/week @ 2024-03-21 35367/week @ 2024-03-28 37152/week @ 2024-04-04 34541/week @ 2024-04-11 37043/week @ 2024-04-18 31077/week @ 2024-04-25 33974/week @ 2024-05-02 32802/week @ 2024-05-09 33401/week @ 2024-05-16 34898/week @ 2024-05-23 37794/week @ 2024-05-30 35776/week @ 2024-06-06 33451/week @ 2024-06-13 33740/week @ 2024-06-20 27588/week @ 2024-06-27

每月下载量 137,516

MIT/Apache

23KB
534

满足您所有标记粘贴需求的宏

github crates.io docs.rs build status

Rust标准库中仅限nightly的 concat_idents! 宏在功能上非常有限,其连接的标识符只能引用现有项,而不能用于定义新内容。

此库提供了一种灵活的方式,可以在宏中将标识符粘贴在一起,包括使用粘贴的标识符来定义新项。

[dependencies]
paste = "1.0"

此方法适用于任何Rust编译器1.31及以上版本。


粘贴标识符

paste! 宏内部,位于 [<...>] 中的标识符会被粘贴在一起,形成一个单一的标识符。

use paste::paste;

paste! {
    // Defines a const called `QRST`.
    const [<Q R S T>]: &str = "success!";
}

fn main() {
    assert_eq!(
        paste! { [<Q R S T>].len() },
        8,
    );
}

更详细的示例

下一个示例显示了一个宏,该宏为某些结构体字段生成访问器方法。它演示了您如何在宏_rules宏内部将粘贴调用捆绑起来的用途。

use paste::paste;

macro_rules! make_a_struct_and_getters {
    ($name:ident { $($field:ident),* }) => {
        // Define a struct. This expands to:
        //
        //     pub struct S {
        //         a: String,
        //         b: String,
        //         c: String,
        //     }
        pub struct $name {
            $(
                $field: String,
            )*
        }

        // Build an impl block with getters. This expands to:
        //
        //     impl S {
        //         pub fn get_a(&self) -> &str { &self.a }
        //         pub fn get_b(&self) -> &str { &self.b }
        //         pub fn get_c(&self) -> &str { &self.c }
        //     }
        paste! {
            impl $name {
                $(
                    pub fn [<get_ $field>](&self) -> &str {
                        &self.$field
                    }
                )*
            }
        }
    }
}

make_a_struct_and_getters!(S { a, b, c });

fn call_some_getters(s: &S) -> bool {
    s.get_a() == s.get_b() && s.get_c().is_empty()
}

大小写转换

在段列表中使用 $var:lower$var:upper,可以将插值的段转换为小写或大写,作为粘贴的一部分。例如,如果调用 [<ld_ $reg:lower _expr>],并且 $reg=Bc,则粘贴为 ld_bc_expr

使用 $var:snake 将驼峰式输入转换为 snake_case。使用 $var:camel 将 snake_case 转换为驼峰式。这些可以组合使用,例如 $var:snake:upper 将给出 SCREAMING_CASE。

精确的Unicode转换方式由 str::to_lowercasestr::to_uppercase 定义。


粘贴文档字符串

paste! 宏中,#[doc ...] 属性的参数会隐式连接起来,形成一个连贯的文档字符串。

use paste::paste;

macro_rules! method_new {
    ($ret:ident) => {
        paste! {
            #[doc = "Create a new `" $ret "` object."]
            pub fn new() -> $ret { todo!() }
        }
    };
}

pub struct Paste {}

method_new!(Paste);  // expands to #[doc = "Create a new `Paste` object"]

许可证

根据您的选择,在 Apache License, Version 2.0MIT 许可证 下获得许可。
除非您明确声明,否则您提交的任何贡献,按照 Apache-2.0 许可证的定义,将按照上述方式双重许可,不附加任何额外条款或条件。

依赖项