尽管Rust 允许您将 Sized 绑定到trait,但是以后您将无法使用它来形成trait 对象: trait Foo { } trait Bar: Sized { } struct Impl; impl Foo for Impl { } impl Bar ...
確定! 回上一頁