pub trait Create { type Options; type Error; // Required method fn create( &mut self, options: Self::Options, ) -> Result<ServiceHandle, Self::Error>; }
Creation API used to create services
Create a new service with the provided options