当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust assert_ne用法及代码示例


本文简要介绍rust语言中 Macro core::assert_ne 的用法。

用法

macro_rules! assert_ne {
    ($left : expr, $right : expr $(,) ?) => { ... };
    ($left : expr, $right : expr, $($arg : tt) +) => { ... };
}

断言两个表达式不相等(使用 PartialEq )。

Panics时,此宏将打印表达式的值及其调试表示。

assert! 一样,这个宏有第二种形式,可以提供自定义的Panics消息。

例子

let a = 3;
let b = 2;
assert_ne!(a, b);

assert_ne!(a, b, "we are testing that the values are not equal");

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Macro core::assert_ne。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。