0

如何从该接口的实现中递归调用我正在实现的接口?

我正在做以下事情:

import io::*;
import to_str::*;
enum some_enum {
  foo(~[some_enum]),
  bar
}

impl to_str for some_enum {
  fn to_str() -> str {
    alt self {
      bar { "bar" }
      foo(nest) { "foo" + nest.to_str() } // this line
    }
  }
}

fn main() {
  println(foo(~[bar,bar,bar]).to_str());
}

它在编译时失败

user@note ~/soft/mine/rust $ rustc example.rs && ./example 
example.rs:13:32: 13:43 error: failed to find an implementation of interface core::to_str::to_str for some_enum
example.rs:13             foo(nest) { "foo" + nest.to_str() }
                                              ^~~~~~~~~~~

当然,我可以做类似 FP 的事情:

  foo(nest) { "foo" + nest.map(|x| { x.to_str() }).to_str() }

但为什么前一种情况无效?

4

1 回答 1

1

似乎可以使用 usingimpl of而不是impl.

impl没有of像无接口实现这样的行为,不涉及实际的接口。

(确认http://dl.rust-lang.org/doc/tutorial.html#interface-less-implementations

于 2012-07-15T17:23:26.500 回答