MyBox<T> constructor

MyBox<T>(
  1. Store store
)

Implementation

MyBox(Store store) {
  box = Box<T>(store);
}