gpt4 book ai didi

Result> 的 Rust 简写

转载 作者:行者123 更新时间:2023-12-04 16:23:07 25 4
gpt4 key购买 nike

在进行错误捕获时,我通常使函数返回结果。但我觉得每次都写 Result > 真的很冗长,是否有一些内置的速记?

fn something() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}

最佳答案

您可以使用泛型参数定义类型别名。许多 crate 是这样的:

type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;

fn something() -> Result<()> {
Ok(())
}

关于Result<type, Box<dyn std::error::Error>> 的 Rust 简写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69837094/

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