如何使外部包装箱中的宏发出Rust警告?

时间:2018-06-21 07:49:29

标签: macros rust warnings static-analysis

使用splines=polyline的{​​{1}}宏,我得到以下警告:

clap

我如何使其静音?我尝试将arg_enum放在warning: use of deprecated item 'std::ascii::AsciiExt': use inherent methods instead --> src/main.rs:37:1 | 37 | / arg_enum!{ 38 | | #[derive(Debug)] 39 | | pub enum Operation { 40 | | Add, ... | 47 | | } 48 | | } | |_^ | = note: #[warn(deprecated)] on by default = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) 之前和#[allow(deprecated)]之前,但是都没有任何效果。

2 个答案:

答案 0 :(得分:2)

否,这还不可能。 Add macro checks to lints (issue #48855)已打开以添加此类功能。

答案 1 :(得分:1)

看来already已经是fixed,在下一版clap中应该不会成为问题。在此之前,您可以使用#![allow(deprecated)]使警告静音。