我们的 Trait
Traits 是 rust 中定义共享行为的一种方式,类似于接口。它允许我们指定类型或者函数必须满足特定的类型定义。Trait 允许定义默认行为,我们将在下面讲到 combinators
的时候看到这一点。
我们 trait 的实现像下面这样(它跟 futures 中的实际实现是一模一样的)。
trait Future {
type Output;
fn poll(&mut self, ctx: &Context) -> Poll<Self::Output>;
}
我们 trait 的定义目前还比较简单,仅仅定义一个关联类型 Output
和一个方法 poll
。poll
方法接受一个 Context
对象的引用作为参数。Context
对象包含对 waker
的一个引用,用来当 future 准备好被再次轮询时通知运行时。