为什么impl不在范围内

时间:2018-08-18 15:14:03

标签: generics rust associated-types

我是Rust的新手,在我的学习玩具项目中,我需要一个具有可变节点的图数据结构,所以我想到了:

use std::cell::RefCell;
use std::clone::Clone;
use std::cmp::Eq;
use std::collections::HashMap;
use std::hash::Hash;
use std::rc::Rc;

pub trait Constructible<T> {
    type C;
    fn new(Self::C) -> T;
}

#[derive(Debug)]
pub struct HashedGraph<K: Eq + Hash + Clone, T: Constructible<T>> {
    graph: HashMap<K, Rc<RefCell<T>>>,
}

impl<K, T> HashedGraph<K, T>
where
    K: Eq + Hash + Clone,
    T: Constructible<T>,
{
    pub fn new<C>(connections: HashMap<K, C>) -> HashedGraph<K, T> {
        let mut graph: HashMap<K, Rc<RefCell<T>>> = HashMap::new();

        for key in connections.keys() {
            graph.insert(
                key.clone(),
                Rc::new(RefCell::new(C::new(*connections.get(key).unwrap()))),
            );
        }

        HashedGraph { graph }
    }
}

impl Constructible<String> for String {
    type C = String;
    fn new(instring: String) -> String {
        instring
    }
}

fn main() {
    let mut test = HashMap::new();
    test.insert("one", "ONE");
    test.insert("two", "TWO");
    let hg = HashedGraph::new(test);
}

这个想法是,我希望节点可以从另一种数据类型构造出来,但是该数据不包含在Graph中,因此是关联类型而不是通用参数。稍后,节点T将包含连接,这些连接只是指向其他节点的弱指针,但是对于这个问题而言,这并不重要。编译时出现错误:

error[E0599]: no function or associated item named `new` found for type `C` in the current scope
  --> src/main.rs:26:61
   |
26 |             graph.insert(key.clone(), Rc::new(RefCell::new( C::new( *connections.get(key).unwrap() ))));
   |                                                             ^^^^^^ function or associated item not found in `C`
   |
   = help: items from traits can only be used if the trait is implemented and in scope
   = note: the following trait defines an item `new`, perhaps you need to implement it:
           candidate #1: `Constructible`

我不明白为什么可构造的实现不在范围内,或者其他什么都不对。如果这是一种通用的实现方式,我将很高兴收到建议!

1 个答案:

答案 0 :(得分:1)

new<C>()的声明中,类型参数C是一个没有约束的新类型变量。看来您打算T的{​​{1}}实例中的关联类型,您可以这样表达:

Constructible

您的代码还有很多其他问题:

  • 您正在使用pub fn new(connections: HashMap<K, T::C>) -> HashedGraph<K, T> { ... } 实例化该对象,但仅为&str添加了一个Constructible实例。这些是不同的类型。
  • 您不需要使用String来访问值。您可以只使用hashmap.get(key)-或在这种情况下使用iter(),因为无论如何您都将所有值从一个容器移动到另一个容器,因此,如果您不需要原始的{ {1}}。
  • drain()的type参数是多余的。始终是HashMap
  • Constructible中推断Self的唯一方法是呼叫者选择使用它的地方。从理论上讲,T的另一种实现可能具有相同的关联fn new() -> T类型,所以这还不够。这意味着构造Constructible时需要类型注释。

Here's a version of your code可以编译,尽管我对您真正想要实现的目标做了一些假设。