繁体   English   中英

Rust:发生移动是因为类型为 `ReadDir`,它没有实现 `Copy` 特征

[英]Rust: move occurs because has type `ReadDir`, which does not implement the `Copy` trait

https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html我发现非常相似的使用String类型引用的示例,但在我的代码中我得到了move occurs because `*paths_ref` has type `ReadDir`, which does not implement the `Copy` trait String有什么区别? 我如何在没有 memcopy 的情况下使用ReadDir

use std::fs;

const CACHE_ADDR: &str = ".";

fn get_files() -> std::fs::ReadDir {
    fs::read_dir(CACHE_ADDR).unwrap()
}

fn main() {
    let paths: std::fs::ReadDir = get_files();
    let paths_ref = &paths;
    println!("Count: {}", paths_ref.count());
    for path in paths_ref.into_iter() {
        println!("{:?}", path.unwrap().path());
        break;
    }
}

cargo build错误:

error[E0507]: cannot move out of `*paths_ref` which is behind a shared reference
 --> src/main.rs:8:27
  |
8 |     println!("Count: {}", paths_ref.count());
  |                           ^^^^^^^^^ move occurs because `*paths_ref` has type `ReadDir`, which does not implement the `Copy` trait

error[E0507]: cannot move out of `*paths_ref` which is behind a shared reference
 --> src/main.rs:9:17
  |
9 |     for path in paths_ref.into_iter() {
  |                 ^^^^^^^^^ move occurs because `*paths_ref` has type `ReadDir`, which does not implement the `Copy` trait

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0507`.
error: could not compile `osm-nca-proc`

To learn more, run the command again with --verbose.

function fn calculate_length(s: &String) -> usize接受 String 的引用并返回一个usize ,在这种情况下,您拥有返回的值。 当你做println.("The length of '{}' is {},", s1; len); ,您的 println 宏尝试使用s1len 这没有问题。

在您的 function 中, fn get_files() -> std::fs::ReadDir返回一个ReadDir结构,您拥有该结构的所有权,这没关系。

在以下行中,您正在创建一个不可变的引用let paths_ref = &paths; ,这没关系。

在那之后的行中,您尝试调用paths_ref.count() ,这是不行的。 为什么? count是一个属于 trait Iterator的方法,如果你看 Iterator 中count方法的定义,即pub fn count(self) -> usize ,它获取了self的所有权,然后返回一个usize 这意味着只要您调用count ,迭代器就会被消耗并且不再存在。

因为path_refself的引用,并且它不拥有ReadDir数据,所以您不能对它调用 count 。 您可以使用paths.count() ,它将使用paths变量并返回一个 usize。 但是请注意,在您调用count之后,您的paths变量将不再存在,并且您不能在以下上下文中使用它。

在您的示例中,您基本上需要迭代ReadDir两次,一次是获取总计数,另一次是迭代每个元素。 您可以通过使用 1 次迭代并手动计算总元素来实现相同的目的(例如在每次迭代中使用计数器i += 1 ),或者您可以调用get_files两次。

如果你真的想迭代一次,你可以收集它(到一个 vec 中),然后你可以用它来获取长度并获取迭代。

我发现了一个非常相似的 stackoverflow 问题,您可能想检查一下如何使用相同的迭代器两次,一次用于计数,一次用于迭代?

暂无
暂无

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

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