pub type AppObject<S> = Box<dyn ServiceObject<(), Response = S, Error = Box<dyn Debug>> + Send + Sync>;
object safe App instance. used for case where naming App’s type is needed.
struct AppObject<S>(/* private fields */);