Does dyn Any support unsized types?

No Any doesn't support ?Sized types. This is because you can't unsize !Sized types, so there is no way to make dyn Any from a [T].

1 Like