rust/tests/source/associated-types-bounds-wrapping.rs

6 lines
186 B
Rust
Raw Normal View History

// Test proper wrapping of long associated type bounds
pub trait HttpService {
type WsService: 'static + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
}