pub type AnimBox<T, V> = Anim<Box<dyn Fun<T = T, V = V>>>;
pub struct AnimBox<T, V>(pub Box<dyn Fun<T = T, V = V>>);
0: Box<dyn Fun<T = T, V = V>>