rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
// Test proper wrapping of long associated type bounds

pub trait HttpService {
    type WsService: 'static + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
}