跳转至

Trait

derive

可以使用#[derive()]去让编译器自动impl某些trait 例如:

#[derive(Copy,Clone,Default,Debug,Eq)]
struct Foo{
    data:i32
}
fn main(){}

trait对象

//todo

动态分发和静态分发

//todo


评论