我試圖訪問for
循環內的變量。我無法在結構上實現Copy
,因爲它包含String
。我將如何在迭代中使用變量?跨迭代移動不可複製的結構
編譯時出錯E0382。當我查看Rust文檔中的錯誤時,他們提到使用引用計數來解決問題。這是我的情況下唯一的解決方案?
#[derive(Clone)]
struct InputParser {
args: Vec<String>,
current: String,
consumed_quote: bool,
}
impl InputParser {
pub fn parse(input: String) -> Vec<String> {
let parser = InputParser {
args: Vec::new(),
current: String::new(),
consumed_quote: false,
};
for c in input.chars() {
match c {
'"' => parser.consume_quote(),
' ' => parser.consume_space(),
_ => parser.consume_char(c),
}
}
parser.end();
return parser.args;
}
pub fn consume_space(mut self) {
if !self.consumed_quote {
self.push_current();
}
}
pub fn consume_quote(mut self) {
self.consumed_quote = self.consumed_quote;
if self.consumed_quote {
self.push_current();
}
}
pub fn consume_char(mut self, c: char) {
self.current.push(c);
}
pub fn end(mut self) {
self.push_current();
}
pub fn push_current(mut self) {
if self.current.len() > 0 {
self.args.push(self.current);
self.current = String::new();
}
}
}
我想整個for
循環迭代訪問parser
。
爲什麼InputParser實現的'parse'函數部分?它不返回InputParser也不返回自引用。 – SirDarius
你爲什麼在價值上('fn end(mut self)')到處都是'self'? – Shepmaster
'self.consumed_quote = self.consumed_quote;'是一條非常可疑的線條。 – Shepmaster