diff options
| author | Wilfred Hughes <wilfred@meta.com> | 2024-08-13 15:20:09 -0700 |
|---|---|---|
| committer | Wilfred Hughes <wilfred@meta.com> | 2024-08-13 16:51:54 -0700 |
| commit | 5e058db6828acf4df9f765f59522fc0dbe19ae60 (patch) | |
| tree | b8e5ff014eedc9008b56242979251b27bc7103a4 | |
| parent | 0a336b3934913793639599ad80777881070c5d7f (diff) | |
| download | rust-5e058db6828acf4df9f765f59522fc0dbe19ae60.tar.gz rust-5e058db6828acf4df9f765f59522fc0dbe19ae60.zip | |
docs: Add a doc comment for OpQueue
Add an explanatory sentence and some sample code to help readers understand why this struct exists.
| -rw-r--r-- | src/tools/rust-analyzer/crates/rust-analyzer/src/op_queue.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tools/rust-analyzer/crates/rust-analyzer/src/op_queue.rs b/src/tools/rust-analyzer/crates/rust-analyzer/src/op_queue.rs index 99f9e9829c9..eab97338724 100644 --- a/src/tools/rust-analyzer/crates/rust-analyzer/src/op_queue.rs +++ b/src/tools/rust-analyzer/crates/rust-analyzer/src/op_queue.rs @@ -3,6 +3,26 @@ pub(crate) type Cause = String; +/// A single-item queue that allows callers to request an operation to +/// be performed later. +/// +/// ``` +/// let queue = OpQueue::default(); +/// +/// // Request work to be done. +/// queue.request_op("user pushed a button", ()); +/// +/// // In a later iteration of the server loop, we start the work. +/// if let Some((_cause, ())) = queue.should_start_op() { +/// dbg!("Some slow operation here"); +/// } +/// +/// // In an even later iteration of the server loop, we can see that the work +/// // was completed. +/// if !queue.op_in_progress() { +/// dbg!("Work has been done!"); +/// } +/// ``` #[derive(Debug)] pub(crate) struct OpQueue<Args = (), Output = ()> { op_requested: Option<(Cause, Args)>, |
