Result
的别名
如果我们想多次复用特定的 Result
类型怎么办?回想一下,Rust 允许我们创建 别名。方便的是,我们可以为特定的 Result
定义一个别名。
在模块级别,创建别名特别有用。在特定模块中发现的错误通常具有相同的 Err
类型,因此单个别名可以简洁地定义_所有_关联的 Result
。这非常有用,以至于 std
库甚至提供了一个:io::Result
!
下面是一个快速示例来展示语法
use std::num::ParseIntError; // Define a generic alias for a `Result` with the error type `ParseIntError`. type AliasedResult<T> = Result<T, ParseIntError>; // Use the above alias to refer to our specific `Result` type. fn multiply(first_number_str: &str, second_number_str: &str) -> AliasedResult<i32> { first_number_str.parse::<i32>().and_then(|first_number| { second_number_str.parse::<i32>().map(|second_number| first_number * second_number) }) } // Here, the alias again allows us to save some space. fn print(result: AliasedResult<i32>) { match result { Ok(n) => println!("n is {}", n), Err(e) => println!("Error: {}", e), } } fn main() { print(multiply("10", "2")); print(multiply("t", "2")); }