pub trait Service { type Service; // Required method fn construct() -> Self::Service; }
Service Trait