aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/thread_watcher.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-20 20:38:47 +0100
committerAleksey Kladov <[email protected]>2018-10-20 20:38:52 +0100
commit6e88aaef5d49c8ec7b6ffe6b41457c3a028b4eb0 (patch)
tree6ae9f95315451a9e722dcffa0c1e1283d276d312 /crates/ra_lsp_server/src/thread_watcher.rs
parent8eea10e3ab25111375a95990b93d1170d5fe8a9f (diff)
use pythonic import order
use std // blank line use extern crates // blank line use crate::{}
Diffstat (limited to 'crates/ra_lsp_server/src/thread_watcher.rs')
-rw-r--r--crates/ra_lsp_server/src/thread_watcher.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/thread_watcher.rs b/crates/ra_lsp_server/src/thread_watcher.rs
index 67952eb74..51b35fa66 100644
--- a/crates/ra_lsp_server/src/thread_watcher.rs
+++ b/crates/ra_lsp_server/src/thread_watcher.rs
@@ -1,8 +1,9 @@
1use crate::Result; 1use std::thread;
2
2use crossbeam_channel::{bounded, unbounded, Receiver, Sender}; 3use crossbeam_channel::{bounded, unbounded, Receiver, Sender};
3use drop_bomb::DropBomb; 4use drop_bomb::DropBomb;
4 5
5use std::thread; 6use crate::Result;
6 7
7pub struct Worker<I, O> { 8pub struct Worker<I, O> {
8 pub inp: Sender<I>, 9 pub inp: Sender<I>,