Type Definition runtime_injector_actix::Svc[][src]

type Svc<T> = Arc<T>;
Expand description

A reference-counted pointer holding a service. The pointer type is determined by the feature flags passed to this crate.

  • rc: Pointer type is Rc<T>
  • arc: Pointer type is Arc<T> (default)