Crate box_any

source ·
Expand description

box_any

A Box wrapper without generic type that allows dynamic dispatch / downcast but without using fat pointer.

Provides a dynamic box type BoxAny, which contains a Box<T> value. BoxAny is similar to Box but it doesn’t use fat pointer to dynamic dispatch.

Structs