如何返回使用本地声明的变量的结构的实例

时间:2017-05-08 20:53:12

标签: rust rust-cargo

我试图弄清楚如何在本地声明一个变量并在返回的值中使用它。以下是导致问题的代码

use std::io;
use std::string::String;
use std::io::Write; // Used for flush implicitly
use topping::Topping;

pub fn read_line(stdin: io::Stdin, prompt: &str) -> String {
    print!("{}", prompt);
    let _ = io::stdout().flush();
    let mut result = String::new();
    let _ = stdin.read_line(&mut result);
    return result;
}

pub fn handle_topping<'a>(stdin: io::Stdin) -> Topping<'a>{
    let name = read_line(stdin, "Topping name: ");
    //let price = read_line(stdin, "Price: ");
    return Topping {name: &name, price: 0.7, vegetarian: false};
}

我有以下结构作为助手

pub struct Topping<'a> {
    pub name: &'a str,
    pub vegetarian: bool,
    pub price: f32,
}

编译器抛出以下错误

error: `name` does not live long enough
  --> src/helpers.rs:17:28
   |
17 |     return Topping {name: &name, price: 0.7, vegetarian: false};
   |                            ^^^^ does not live long enough
18 | }
   | - borrowed value only lives until here
   |
note: borrowed value must be valid for the lifetime 'a as defined on the body at 14:58...
  --> src/helpers.rs:14:59
   |
14 |   pub fn handle_topping<'a>(stdin: io::Stdin) -> Topping<'a>{
   |  ___________________________________________________________^ starting here...
15 | |     let name = read_line(stdin, "Topping name: ");
16 | |     //let price = read_line(stdin, "Price: ");
17 | |     return Topping {name: &name, price: 0.7, vegetarian: false};
18 | | }
   | |_^ ...ending here

我并不特别想改变结构,更愿意就我不理解的内容得到一些建议。

1 个答案:

答案 0 :(得分:2)

只需将Topping.name&str切换为String

您无法返回对read_lineString)结果的引用,因为String会在handle_topping结束时被删除。但是,您可以将String的所有权移至结构中并返回Topping {name: String, veg: bool, ...}