Macro declare_service

Source
macro_rules! declare_service {
    ($service_impl: ty) => { ... };
}
Expand description

Declare that this crate is a JAM service characterized by $service_impl and create necessary entry points.

  • $service_impl must implement the Service trait.