如何在隐式导出宏时使用模块中定义的构造

时间:2015-10-05 05:10:24

标签: macros rust

尝试从模块导出宏。 Macro生成实现模块中定义的某些特征的结构。有没有办法获得宏而不手动导入该特征?

// src/lib.rs
#![crate_name="macro_test"]
#![crate_type="lib"]
#![crate_type="rlib"]

pub trait B<T> where T: Copy {
    fn new(x: T) -> Self;
}

#[macro_export]
macro_rules! test {
    ( $n:ident ) => {
        struct $n<T> where T: Copy {
            x: T
        }

        impl<T> B<T> for $n<T> where T: Copy {
            fn new(x: T) -> Self {
                $n { x: x }
            }
        }
    } 
}

// tests/test_simple.rs
#[macro_use]
extern crate macro_test;

test!(Test);

#[test]
fn test_macro() {
    let a = Test::<i32>::new(1);
}

在这种情况下,我收到错误:

<macro_test macros>:2:54: 2:61 error: use of undeclared trait name `B` [E0405]
<macro_test macros>:2 struct $ n < T > where T : Copy { x : T } impl < T > B < T > for $ n < T >

如果我使用$crate变量重写特征实现:

impl<T> $crate::B<T> for $n<T> where T: Copy {

错误消息更改为下一个:

tests\test_simple.rs:8:13: 8:29 error: no associated item named `new` found for type `Test<i32>` in the current scope
tests\test_simple.rs:8     let a = Test::<i32>::new(1);
                               ^~~~~~~~~~~~~~~~
tests\test_simple.rs:8:13: 8:29 help: items from traits can only be used if the trait is in scope; the following trait is implemented but not in scope, perhaps add a `use` for it:
tests\test_simple.rs:8:13: 8:29 help: candidate #1: use `macro_test::B`

为什么会这样?

1 个答案:

答案 0 :(得分:2)

因为你不能在没有use特征的情况下调用特质方法。这与宏无关 - 它只是Rust中的标准规则。

也许您希望宏生成一个固有的impl而不是?

impl<T> $n<T> where T: Copy {
    pub fn new(x: T) -> Self {
        $n { x: x }
    }
}

而不是你现在拥有的。