pub trait Object {
    fn construct() -> Self;
}
Expand description

自定义对象

其需要实现一个构造函数,用于初始化分配的内存

Required Methods

Implementors