pub trait Foo<T>{}
pub trait Foo
type T;
}
两种写法中 关联类型受到很多限制。 比如 T 如果存在生命周期,
是否泛型trait可以完全取代关联类型?
1
共 3 条评论, 1 页
pub trait Foo<T>{}
pub trait Foo
type T;
}
两种写法中 关联类型受到很多限制。 比如 T 如果存在生命周期,
是否泛型trait可以完全取代关联类型?
评论区
写评论一个完整的例子
对以下内容的回复:
可以这样
参照https://doc.rust-lang.org/std/ops/trait.Add.html