rustfmt-nightly 0.6.0

Tool to find and fix Rust formatting issues
// rustfmt-max_width: 100
// Test proper wrapping of long associated type bounds

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