Type Alias AppObject

Source
pub type AppObject<S> = Box<dyn ServiceObject<(), Response = S, Error = Box<dyn Debug>> + Send + Sync>;
Expand description

object safe App instance. used for case where naming App’s type is needed.

Aliased Type§

struct AppObject<S>(/* private fields */);