gpt4 book ai didi

rust - 如何创建 stub 函数?

转载 作者:行者123 更新时间:2023-11-29 07:50:23 25 4
gpt4 key购买 nike

在 Rust 中创建 stub 函数的最佳方法是什么?像这样的东西:

fn my_method() -> bool {
return new UnImplementedException() //wrong! But that's close to what I need
}

在 C# 中,方法可以返回 UnImplementedException,这对于创建 stub 很方便。当然,在这种特殊情况下,我可以返回 true 或 false,但我想要适用于任何返回类型的解决方案。

最佳答案

您需要 unimplemented! 宏 ( doc link )。

fn my_method() -> bool {
unimplemented!()
}

关于rust - 如何创建 stub 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28037986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com