标签: rust
在Rust中创建存根函数的最佳方法是什么?类似的东西:
fn my_method() -> bool { return new UnImplementedException() //wrong! But that's close to what I need }
在C#中,方法可以返回UnImplementedException,这对于创建存根很方便。当然,在这种特殊情况下,我可以返回true或false,但我想要适用于任何返回类型的解决方案。
UnImplementedException
答案 0 :(得分:6)
您需要unimplemented!宏(doc link)。
unimplemented!
fn my_method() -> bool { unimplemented!() }