繁体   English   中英

Rust从fn:不匹配的类型返回结果错误

[英]Rust returns a result error from fn: mismatched types

我希望此函数返回错误结果:

fn get_result() -> Result<String, std::io::Error> {
     // Ok(String::from("foo")) <- works fine
     Result::Err(String::from("foo"))
}

错误信息

error[E0308]: mismatched types
 --> src/main.rs:3:17
  |
3 |     Result::Err(String::from("foo"))
  |                 ^^^^^^^^^^^^^^^^^^^ expected struct `std::io::Error`, found struct `std::string::String`
  |
  = note: expected type `std::io::Error`
             found type `std::string::String`

我很困惑如何在使用预期的结构时打印出错误消息。

错误信息非常清楚。 get_result返回类型是Result<String, std::io::Error> ,这意味着在Result::Ok情况下, Ok变量的内部值是String类型,而在Result::Err情况下, Err变体的内部值是std::io::Error类型。

您的代码尝试创建一个内部值为String类型的Err变体,并且编译器正确地抱怨类型不匹配。 要创建新的std::io::Error ,可以std::io::Error使用new方法 以下是使用正确类型的代码示例:

fn get_result() -> Result<String, std::io::Error> {
    Err(std::io::Error::new(std::io::ErrorKind::Other, "foo"))
}

如果我做对了,你可能想做这样的事情......

fn get_result() -> Result<String, String> {
   // Ok(String::from("foo")) <- works fine
   Result::Err(String::from("Error"))
}

fn main(){
    match get_result(){
        Ok(s) => println!("{}",s),
        Err(s) => println!("{}",s)
    };
}

我不建议这样做。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM