4

この関数がエラー結果を返すようにしたい:

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`

予想される構造体を使用するときにエラーメッセージを出力する方法がわかりません。

4

2 に答える 2

10

エラーメッセージは非常に明確です。の戻り値の型はget_resultですResult<String, std::io::Error>。つまり、このResult::Ok場合、Okバリアントの内部値は typeStringであるのに対し、このResult::Err場合、Errバリアントの内部値は typestd::io::Errorです。

Errあなたのコードは type の内部値を持つバリアントを作成しようとしましたStringが、コンパイラは当然のことながら型の不一致について不平を言います。新しい を作成するには、メソッド onstd::io::Errorを使用できます。正しい型を使用したコードの例を次に示します。newstd::io::Error

fn get_result() -> Result<String, std::io::Error> {
    Err(std::io::Error::new(std::io::ErrorKind::Other, "foo"))
}
于 2017-08-15T08:46:21.030 に答える