Struct lsp_server::ReqQueue
source · pub struct ReqQueue<I, O> {
pub incoming: Incoming<I>,
pub outgoing: Outgoing<O>,
}
Expand description
Manages the set of pending requests, both incoming and outgoing.
Fields§
§incoming: Incoming<I>
§outgoing: Outgoing<O>
Trait Implementations§
Auto Trait Implementations§
impl<I, O> RefUnwindSafe for ReqQueue<I, O>where I: RefUnwindSafe, O: RefUnwindSafe,
impl<I, O> Send for ReqQueue<I, O>where I: Send, O: Send,
impl<I, O> Sync for ReqQueue<I, O>where I: Sync, O: Sync,
impl<I, O> Unpin for ReqQueue<I, O>where I: Unpin, O: Unpin,
impl<I, O> UnwindSafe for ReqQueue<I, O>where I: UnwindSafe, O: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more