Where does the vtable pointer go in Box<Trait>?

What does this mean exactly? How did you try this?

Trait objects use a fat ptr - it’s essentially a (usize, usize) pair where the first ptr is to the data and the second to the vtbl. A raw trait object ptr is the same thing.