Sized Constraint
This crate requires `Sized`.
The std `Arc` does not have a size constraint, which is a quite common requirement when using `Arc<dyn MyTrait>`
```rust
pub struct Arc<T>where
T: ?Sized{ /* private fields */ }
```
关闭于 2023-02-21 1 条评论