Struct lsp_server::ReqQueue[][src]

pub struct ReqQueue<I, O> {
    pub incoming: Incoming<I>,
    pub outgoing: Outgoing<O>,
}

Manages the set of pending requests, both incomming and outgoing.

Fields

incoming: Incoming<I>outgoing: Outgoing<O>

Trait Implementations

impl<I: Debug, O: Debug> Debug for ReqQueue<I, O>[src]

impl<I, O> Default for ReqQueue<I, O>[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.