trait Service { type Future: Future<Output = Response>; fn process_request(&self, input: Input) -> Self::Future; } impl Service for MyService { type Future = ...
確定! 回上一頁