admin管理员组文章数量:1350092
rust program
fn main() {
let args: Vec<String> = env::args().collect();
let parse_args = Config::build(&args);
dbg!(args);
let config = parse_args.unwrap();
dbg!(config.file_path);
dbg!(config.query);
}
#[derive(Debug)]
struct Config {
query: String,
file_path: String
}
impl Config {
fn new(args: &[String]) -> Config {
return Config{
query: args[1].clone(),
file_path: args[2].clone()
}
}
fn build(args: &[String]) -> Result<Config, &'static str> {
if args.len() < 3 {
return Err("error num");
}
return Ok(Self::new(args));
}
}
but when i remove 'static in build method, compile error
fn build(args: &[String]) -> Result<Config, &str>
my question is, why i change &'static str to &str, i will compile fail
cargo check result
error[E0505]: cannot move out of `args` because it is borrowed
4 | let args: Vec<String> = env::args().collect();
| ---- binding `args` declared here
5 |
6 | let parse_args = Config::build(&args);
| ----- borrow of `args` occurs here
7 |
8 | dbg!(args);
| ^^^^^^^^^^ move out of `args` occurs here
9 | let config = parse_args.unwrap();
| ---------- borrow later used here
it become a borrowed error
rust program
fn main() {
let args: Vec<String> = env::args().collect();
let parse_args = Config::build(&args);
dbg!(args);
let config = parse_args.unwrap();
dbg!(config.file_path);
dbg!(config.query);
}
#[derive(Debug)]
struct Config {
query: String,
file_path: String
}
impl Config {
fn new(args: &[String]) -> Config {
return Config{
query: args[1].clone(),
file_path: args[2].clone()
}
}
fn build(args: &[String]) -> Result<Config, &'static str> {
if args.len() < 3 {
return Err("error num");
}
return Ok(Self::new(args));
}
}
but when i remove 'static in build method, compile error
fn build(args: &[String]) -> Result<Config, &str>
my question is, why i change &'static str to &str, i will compile fail
cargo check result
error[E0505]: cannot move out of `args` because it is borrowed
4 | let args: Vec<String> = env::args().collect();
| ---- binding `args` declared here
5 |
6 | let parse_args = Config::build(&args);
| ----- borrow of `args` occurs here
7 |
8 | dbg!(args);
| ^^^^^^^^^^ move out of `args` occurs here
9 | let config = parse_args.unwrap();
| ---------- borrow later used here
it become a borrowed error
Share Improve this question edited Apr 2 at 9:03 RTGM asked Apr 2 at 2:54 RTGMRTGM 112 bronze badges New contributor RTGM is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1 |1 Answer
Reset to default 1Because of the Rust lifetime elision rules, this code:
fn build(args: &[String]) -> Result<Config, &str>
is equivalent to:
fn build<'a>(args: &'a [String]) -> Result<Config, &'a str>
which links the lifetime of the Result
to args
and means that args
stays borrowed until you unwrap
the Result
. But dbg!(args)
tries to take ownership while the parse_args
borrow is still alive.
本文标签: rustwhy it cant compile when i remove 39static in methodStack Overflow
版权声明:本文标题:rust - why it cant compile when i remove 'static in method - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743862709a2552037.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
cargo check
(not from your IDE). – Jmb Commented Apr 2 at 6:59