标签: rust
假设我有这两个结构
struct Node<T> { value: T, next: Box<Option<Node<T>>> } struct Node2<T> { value: T, next: Option<Box<Node2<T>>> }
内存布局有何区别?哪个更好?