我正在尝试编写一个需要use
一些项目的宏。这适合每个文件一次使用,但对我来说却很脏。有没有更好的方法直接引用项目,例如impl std::ops::Add for $t
或其他内容?谢谢!
#[macro_export]
macro_rules! implement_measurement {
($($t:ty)*) => ($(
// TODO: Find a better way to reference these...
use std::ops::{Add,Sub,Div,Mul};
use std::cmp::{Eq, PartialEq};
use std::cmp::{PartialOrd, Ordering};
impl Add for $t {
type Output = Self;
fn add(self, rhs: Self) -> Self {
Self::from_base_units(self.get_base_units() + rhs.get_base_units())
}
}
impl Sub for $t {
type Output = Self;
fn sub(self, rhs: Self) -> Self {
Self::from_base_units(self.get_base_units() - rhs.get_base_units())
}
}
// ... others ...
))
}
最佳答案
您可以use
特征,或者可以使用完整路径引用它:
struct Something {
count: i8,
}
impl std::fmt::Display for Something {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{}", self.count)
}
}
请注意,在模块内部,项目路径是相对的,因此您需要使用一些
super
或绝对路径(在我看来,这是更好的选择):mod inner {
struct Something {
count: i8,
}
impl ::std::fmt::Display for Something {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "{}", self.count)
}
}
}
在中间位置,您可以对模块进行
use
编码,但不能对特征进行编码:use std::fmt;
impl fmt::Display for Something {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.count)
}
}
而且,如果您只是担心键入,可以为模块加上别名,但是我认为将其设置得太短会更难于理解:
use std::fmt as f;
impl f::Display for Something {
fn fmt(&self, f: &mut f::Formatter) -> f::Result {
write!(f, "{}", self.count)
}
}
关于macros - 在宏中正确的方法 `use`,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31092336/