如何从该接口的实现中递归调用我正在实现的接口?
我正在做以下事情:
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() }
但为什么前一种情况无效?